|
@@ -3,6 +3,7 @@
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
+ <packaging>jar</packaging>
|
|
<parent>
|
|
<parent>
|
|
<groupId>xyz.tbvns</groupId>
|
|
<groupId>xyz.tbvns</groupId>
|
|
<artifactId>PowerGD</artifactId>
|
|
<artifactId>PowerGD</artifactId>
|
|
@@ -119,8 +120,35 @@
|
|
<distributionManagement>
|
|
<distributionManagement>
|
|
<repository>
|
|
<repository>
|
|
<id>main-repo</id> <!-- Must match the id in settings.xml -->
|
|
<id>main-repo</id> <!-- Must match the id in settings.xml -->
|
|
- <url>http://localhost:7071</url>
|
|
|
|
|
|
+ <url>http://192.168.1.42:7071/releases</url>
|
|
</repository>
|
|
</repository>
|
|
</distributionManagement>
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
+ <build>
|
|
|
|
+ <plugins>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
+ <version>3.8.1</version>
|
|
|
|
+ <configuration>
|
|
|
|
+ <source>1.8</source>
|
|
|
|
+ <target>1.8</target>
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-jar-plugin</artifactId>
|
|
|
|
+ <version>3.4.2</version>
|
|
|
|
+ <configuration>
|
|
|
|
+ <archive>
|
|
|
|
+ <manifest>
|
|
|
|
+ <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
+ <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
|
|
|
+ </manifest>
|
|
|
|
+ </archive>
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ </build>
|
|
|
|
+
|
|
</project>
|
|
</project>
|