-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
88 lines (75 loc) · 2.38 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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.hornetq</groupId>
<artifactId>hornetq-checkstyle-checks</artifactId>
<name>HornetQ Custom Checkstyle Checks</name>
<version>0.2</version>
<url>http://hornetq.org</url>
<description>
Putting the buzz in messaging
</description>
<organization>
<name>JBoss, a division of Red Hat</name>
<url>http://www.jboss.org/</url>
</organization>
<licenses>
<license>
<name>ASL 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/hornetq/hornetq-checkstyle-checks.git</connection>
<developerConnection>scm:git://github.com/hornetq/hornetq-checkstyle-checks.git</developerConnection>
<url>https://github.com/hornetq/hornetq-checkstyle-checks</url>
</scm>
<distributionManagement>
<repository>
<id>jboss-releases-repository</id>
<name>JBoss Releases Repository</name>
<url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>jboss-snapshots-repository</id>
<name>JBoss Snapshots Repository</name>
<url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>checkstyle</groupId>
<artifactId>checkstyle</artifactId>
<version>5.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<developers>
<developer>
<id>clebertsuconic</id>
<name>Clebert Suconic</name>
<email>[email protected]</email>
<url>http://hornetq.com</url>
<roles>
<role>project-owner</role>
</roles>
<timezone>0</timezone>
</developer>
</developers>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>