Changed artifactId, added sources to jar

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

93
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>
<sourceDirectory>src</sourceDirectory> <build>
<plugins> <sourceDirectory>src</sourceDirectory>
<plugin> <plugins>
<artifactId>maven-compiler-plugin</artifactId> <plugin>
<version>3.5.1</version> <artifactId>maven-compiler-plugin</artifactId>
<configuration> <version>3.5.1</version>
<source/> <configuration>
<target/> <source />
</configuration> <target />
</plugin> </configuration>
</plugins> </plugin>
</build> <plugin>
<dependencies> <groupId>org.apache.maven.plugins</groupId>
<dependency> <artifactId>maven-source-plugin</artifactId>
<groupId>org.projectlombok</groupId> <executions>
<artifactId>lombok</artifactId> <execution>
<version>1.16.12</version> <id>attach-sources</id>
</dependency> <goals>
<dependency> <goal>jar</goal>
<groupId>junit</groupId> </goals>
<artifactId>junit</artifactId> </execution>
<version>4.12</version> </executions>
</dependency> </plugin>
<dependency> </plugins>
<groupId>commons-io</groupId> </build>
<artifactId>commons-io</artifactId> <dependencies>
<version>2.4</version> <dependency>
</dependency> <groupId>org.projectlombok</groupId>
</dependencies> <artifactId>lombok</artifactId>
<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>