-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
97 lines (92 loc) · 2.89 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>co.zmc</groupId>
<artifactId>solarcraft</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>SolarCraft</name>
<inceptionYear>2013</inceptionYear>
<url>https://github.com/ZephyrMC-Dev/SolarCraft</url>
<parent>
<groupId>net.md-5</groupId>
<artifactId>ForgeMod</artifactId>
<version>1.6.2-9.10.0-SNAPSHOT</version>
</parent>
<organization>
<name>ZephyrUnleashed LLC</name>
<url>http://www.zephyrunleashed.com</url>
</organization>
<licenses>
<license>
<name>ZephyrUnleashed License Version 1</name>
<url>http://zephyrunleashed.com/licensev1</url>
<distribution>repo</distribution>
<comments>GNU Lesser General Public License Version 3, but with a provision that files are released under the MIT license 180 days after they are published</comments>
</license>
</licenses>
<repositories>
<repository>
<id>repo-zmc</id>
<url>http://repo.zephyr-mc.com/content/groups/public</url>
</repository>
</repositories>
<build>
<defaultGoal>clean package</defaultGoal>
<sourceDirectory>${project.basedir}/src</sourceDirectory>
<finalName>${project.name}</finalName>
<resources>
<resource>
<filtering>false</filtering>
<directory>${project.basedir}</directory>
<targetPath>.</targetPath>
<includes>
<include>LICENSE.txt</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.10.b1</version>
<executions>
<execution>
<configuration>
<properties>
<projectName>${project.name}</projectName>
<orgUrl>${project.organization.url}</orgUrl>
<orgInceptionYear>${project.inceptionYear}</orgInceptionYear>
<orgName>${project.organization.name}</orgName>
</properties>
<quiet>true</quiet>
<encoding>UTF-8</encoding>
<strictCheck>true</strictCheck>
<header>${project.basedir}/HEADER.txt</header>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
<keywords>
<keyword>${project.name}</keyword>
<keyword>license</keyword>
</keywords>
<includes>
<include>src/main/java/co/zmc/**</include>
</includes>
<excludes>
<exclude>**/README.md</exclude>
<exclude>**/TODO.md</exclude>
<exclude>**/LICENSE.txt</exclude>
<exclude>src/test/resources/**</exclude>
<exclude>src/main/resources/**</exclude>
</excludes>
</configuration>
<goals>
<goal>format</goal>
</goals>
<phase>clean</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>