-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
80 lines (70 loc) · 2.66 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
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>8</version>
</parent>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-transformer-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>1.0.0-SNAPSHOT</version>
<name>Transformer Maven Mojo</name>
<description>Provides capability to perform bytecode transformation as part of build</description>
<organization>
<name>JBoss, a division of Red Hat, Inc</name>
<url>http://www.jboss.org/</url>
</organization>
<developers>
<developer>
<name>Ales Justin</name>
<email>ales.justin@jboss.org</email>
<organization>JBoss, a division of Red Hat, Inc</organization>
<organizationUrl>http://www.jboss.org</organizationUrl>
<timezone>+1</timezone>
</developer>
</developers>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/copyleft/lesser.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:alesj/maven-transformer-plugin.git</connection>
<developerConnection>scm:git:git@github.com:alesj/maven-transformer-plugin.git</developerConnection>
<url>scm:git:git@github.com:alesj/maven-transformer-plugin.git</url>
</scm>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.0.4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.0.4</version>
</dependency>
<dependency>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.12.0.GA</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>