partially fixed pom.xml

This commit is contained in:
Govindas 2021-05-04 16:46:46 +03:00
parent 4da64624d8
commit b1ef437b96
1 changed files with 19 additions and 3 deletions

22
pom.xml
View File

@ -32,7 +32,7 @@
</repository>
</repositories>
<build>
<build>
<resources>
<resource>
<directory>src/java</directory>
@ -45,11 +45,27 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>10</source>
<target>10</target>
<source>11</source>
<target>11</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.3</version>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>