-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
69 lines (61 loc) · 2.46 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
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>pl.org.miki</groupId>
<artifactId>quickstart-archetype-common</artifactId>
<version>1.0.0</version>
<relativePath>common/pom.xml</relativePath>
</parent>
<artifactId>java8-quickstart-archetype</artifactId>
<version>1.0.1-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>${project.artifactId}</name>
<description>Basic Java 8 archetype. Options:
-testLibrary: [junit, testng, none]. DEFAULT: junit. Adds the requested test library to the POM deps.
-compilerMode: [simple, test-only, retrolambda-main, retrolambda-all]. DEFAULT: simple.
--simple: everything is compiled as Java 8.
--test-only: set up test for Java 8, and main for Java 7.
--retrolambda-main: main code is compiled as Java 8, and then converted to Java 7 via retrolambda.
--retrolambda-all: all code is compiled as Java 8, and then converted to Java 7 via retrolambda.
NOTE: Retrolambda support provided "as is" - if you have any problems, please file a ticket on the GitHub page!
</description>
<url>https://github.com/mikkoz/java8-quickstart-archetype</url>
<licenses>
<license>
<name>BSD 3-clause "New" or "Revised" License</name>
<url>http://www.spdx.org/licenses/BSD-3-Clause</url>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/mikkoz/${project.artifactId}.git</connection>
<developerConnection>scm:git:https://github.com/mikkoz/${project.artifactId}.git</developerConnection>
<url>https://github.com/mikkoz/${project.artifactId}.git</url>
</scm>
<developers>
<developer>
<name>Mikołaj Koziarkiewicz</name>
<email>[email protected]</email>
<organization>Miki's OSS Projects</organization>
<organizationUrl>http://miki.org.pl</organizationUrl>
</developer>
</developers>
<inceptionYear>2014</inceptionYear>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>${archetype.plugin.version}</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
<version>${archetype.plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>