-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
87 lines (76 loc) · 2.52 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
<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">
<parent>
<artifactId>mojo</artifactId>
<groupId>org.codehaus.mojo</groupId>
<version>16</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.spout</groupId>
<artifactId>jalopy-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>Jalopy Maven Plugin</name>
<version>1.1-SNAPSHOT</version>
<description>Formats java source files following a coding convention.</description>
<prerequisites>
<maven>2.0</maven>
</prerequisites>
<inceptionYear>2004</inceptionYear>
<developers>
<developer>
<id>jruiz</id>
<name>Johnny R. Ruiz III</name>
<email>[email protected]</email>
</developer>
<developer>
<id>aaime</id>
<name>Andrea Aime</name>
<email>[email protected]</email>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:http://svn.codehaus.org/mojo/trunk/mojo/jalopy-maven-plugin/</connection>
<developerConnection>scm:svn:https://svn.codehaus.org/mojo/trunk/mojo/jalopy-maven-plugin/</developerConnection>
<url>http://svn.codehaus.org/mojo/trunk/mojo/jalopy-maven-plugin/</url>
</scm>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jalopy</groupId>
<artifactId>jalopy</artifactId>
<version>1.5rc3</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-plugin-testing-harness</artifactId>
<version>1.0-beta-1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>