Changed artifactId, added sources to jar

This commit is contained in:
Maschell 2017-05-17 19:52:55 +02:00
parent f743055c1a
commit 2f30ab6e0c

91
pom.xml
View File

@ -1,41 +1,54 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" 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"> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<modelVersion>4.0.0</modelVersion> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>de.mas.wiiu.jnus</groupId> <modelVersion>4.0.0</modelVersion>
<artifactId>library</artifactId> <groupId>de.mas.wiiu.jnus</groupId>
<version>0.0.1-SNAPSHOT</version> <artifactId>JNUSLib</artifactId>
<properties> <version>0.0.1-SNAPSHOT</version>
<maven.compiler.source>1.8</maven.compiler.source> <properties>
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.source>1.8</maven.compiler.source>
</properties> <maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build> <build>
<sourceDirectory>src</sourceDirectory> <sourceDirectory>src</sourceDirectory>
<plugins> <plugins>
<plugin> <plugin>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version> <version>3.5.1</version>
<configuration> <configuration>
<source/> <source />
<target/> <target />
</configuration> </configuration>
</plugin> </plugin>
</plugins> <plugin>
</build> <groupId>org.apache.maven.plugins</groupId>
<dependencies> <artifactId>maven-source-plugin</artifactId>
<dependency> <executions>
<groupId>org.projectlombok</groupId> <execution>
<artifactId>lombok</artifactId> <id>attach-sources</id>
<version>1.16.12</version> <goals>
</dependency> <goal>jar</goal>
<dependency> </goals>
<groupId>junit</groupId> </execution>
<artifactId>junit</artifactId> </executions>
<version>4.12</version> </plugin>
</dependency> </plugins>
<dependency> </build>
<groupId>commons-io</groupId> <dependencies>
<artifactId>commons-io</artifactId> <dependency>
<version>2.4</version> <groupId>org.projectlombok</groupId>
</dependency> <artifactId>lombok</artifactId>
</dependencies> <version>1.16.12</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
</dependencies>
</project> </project>