Skip to content

Commit 871d2f7

Browse files
committed
New archetypes
1 parent 24008e2 commit 871d2f7

36 files changed

Lines changed: 816 additions & 0 deletions

File tree

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/.settings/
2+
/target/
3+
/.project
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>net.wasdev.maven.tools</groupId>
5+
<artifactId>liberty-ejb31-archetype</artifactId>
6+
<version>1.0</version>
7+
<packaging>maven-archetype</packaging>
8+
9+
<licenses>
10+
<license>
11+
<name>The Apache Software License, Version 2.0</name>
12+
<url>https://raw.github.com/WASdev/ci.maven.tools/master/LICENSE</url>
13+
<distribution>repo</distribution>
14+
</license>
15+
</licenses>
16+
17+
<build>
18+
<plugins>
19+
<plugin>
20+
<groupId>org.apache.maven.archetype</groupId>
21+
<artifactId>archetype-packaging</artifactId>
22+
<version>2.2</version>
23+
<extensions>true</extensions>
24+
</plugin>
25+
</plugins>
26+
</build>
27+
28+
</project>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<archetype-descriptor
3+
xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0 http://maven.apache.org/xsd/archetype-descriptor-1.0.0.xsd"
6+
partial="false" name="WebSphere Liberty EJB31 Archetype">
7+
8+
</archetype-descriptor>
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4+
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
6+
<licenses>
7+
<license>
8+
<name>The Apache Software License, Version 2.0</name>
9+
<url>https://raw.github.com/WASdev/ci.maven.tools/master/LICENSE</url>
10+
<distribution>repo</distribution>
11+
</license>
12+
</licenses>
13+
14+
<modelVersion>4.0.0</modelVersion>
15+
16+
<groupId>${groupId}</groupId>
17+
<artifactId>${artifactId}</artifactId>
18+
<packaging>ejb</packaging>
19+
<version>${version}</version>
20+
21+
<name>${artifactId}</name>
22+
<url>http://maven.apache.org</url>
23+
24+
<dependencies>
25+
<dependency>
26+
<groupId>net.wasdev.maven.tools</groupId>
27+
<artifactId>liberty-target</artifactId>
28+
<version>LATEST</version>
29+
<type>pom</type>
30+
<scope>provided</scope>
31+
</dependency>
32+
</dependencies>
33+
34+
35+
<build>
36+
<plugins>
37+
<plugin>
38+
<groupId>org.apache.maven.plugins</groupId>
39+
<artifactId>maven-compiler-plugin</artifactId>
40+
<version>2.0.2</version>
41+
<configuration>
42+
<source>1.6</source>
43+
<target>1.6</target>
44+
</configuration>
45+
</plugin>
46+
<plugin>
47+
<groupId>org.apache.maven.plugins</groupId>
48+
<artifactId>maven-ejb-plugin</artifactId>
49+
<version>2.1</version>
50+
<configuration>
51+
<ejbVersion>3.1</ejbVersion>
52+
</configuration>
53+
</plugin>
54+
55+
</plugins>
56+
</build>
57+
</project>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/.settings/
2+
/target/
3+
/.project
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>net.wasdev.maven.tools</groupId>
5+
<artifactId>liberty-osgi-ejb31-archetype</artifactId>
6+
<version>1.0</version>
7+
<packaging>maven-archetype</packaging>
8+
9+
<licenses>
10+
<license>
11+
<name>The Apache Software License, Version 2.0</name>
12+
<url>https://raw.github.com/WASdev/ci.maven.tools/master/LICENSE</url>
13+
<distribution>repo</distribution>
14+
</license>
15+
</licenses>
16+
17+
<build>
18+
<plugins>
19+
<plugin>
20+
<groupId>org.apache.maven.archetype</groupId>
21+
<artifactId>archetype-packaging</artifactId>
22+
<version>2.2</version>
23+
<extensions>true</extensions>
24+
</plugin>
25+
</plugins>
26+
</build>
27+
28+
</project>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<archetype-descriptor
3+
xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0 http://maven.apache.org/xsd/archetype-descriptor-1.0.0.xsd"
6+
partial="false" name="WebSphere Liberty EJB32 Archetype">
7+
8+
</archetype-descriptor>
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4+
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
6+
<licenses>
7+
<license>
8+
<name>The Apache Software License, Version 2.0</name>
9+
<url>https://raw.github.com/WASdev/ci.maven.tools/master/LICENSE</url>
10+
<distribution>repo</distribution>
11+
</license>
12+
</licenses>
13+
14+
<modelVersion>4.0.0</modelVersion>
15+
16+
<groupId>${groupId}</groupId>
17+
<artifactId>${artifactId}</artifactId>
18+
<packaging>ejb</packaging>
19+
<version>${version}</version>
20+
21+
<name>${artifactId}</name>
22+
<url>http://maven.apache.org</url>
23+
24+
<dependencies>
25+
<dependency>
26+
<groupId>net.wasdev.maven.tools</groupId>
27+
<artifactId>liberty-target</artifactId>
28+
<version>LATEST</version>
29+
<type>pom</type>
30+
<scope>provided</scope>
31+
</dependency>
32+
</dependencies>
33+
34+
35+
<build>
36+
<plugins>
37+
<plugin>
38+
<groupId>org.apache.maven.plugins</groupId>
39+
<artifactId>maven-compiler-plugin</artifactId>
40+
<version>2.0.2</version>
41+
<configuration>
42+
<source>1.6</source>
43+
<target>1.6</target>
44+
</configuration>
45+
</plugin>
46+
<plugin>
47+
<groupId>org.apache.maven.plugins</groupId>
48+
<artifactId>maven-ejb-plugin</artifactId>
49+
<version>2.1</version>
50+
<configuration>
51+
<ejbVersion>3.2</ejbVersion>
52+
</configuration>
53+
</plugin>
54+
55+
</plugins>
56+
</build>
57+
</project>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/.settings/
2+
/target/
3+
/.project
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>net.wasdev.maven.tools</groupId>
5+
<artifactId>liberty-osgi-ejb31-archetype</artifactId>
6+
<version>1.0</version>
7+
<packaging>maven-archetype</packaging>
8+
9+
<licenses>
10+
<license>
11+
<name>The Apache Software License, Version 2.0</name>
12+
<url>https://raw.github.com/WASdev/ci.maven.tools/master/LICENSE</url>
13+
<distribution>repo</distribution>
14+
</license>
15+
</licenses>
16+
17+
<build>
18+
<plugins>
19+
<plugin>
20+
<groupId>org.apache.maven.archetype</groupId>
21+
<artifactId>archetype-packaging</artifactId>
22+
<version>2.2</version>
23+
<extensions>true</extensions>
24+
</plugin>
25+
</plugins>
26+
</build>
27+
28+
</project>

0 commit comments

Comments
 (0)