1
1
<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
2
xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3
3
<modelVersion >4.0.0</modelVersion >
4
- <groupId >org.audit4j.integration.spring </groupId >
4
+ <groupId >org.audit4j</groupId >
5
5
<artifactId >audit4j-spring</artifactId >
6
6
<packaging >jar</packaging >
7
- <version >2.0-SNAPSHOT</version >
8
7
<name >Audit4j - Spring Integration</name >
9
- <url >http://maven.apache.org</url >
8
+ <version >1.0.0</version >
9
+ <url >http://www.mechanizedspace.com/audit4j</url >
10
+ <description >Audit4j - An open-source audit suit for enterprise java platform, Spring Integration</description >
11
+ <organization >
12
+ <name >Audit4j</name >
13
+ <url >http://www.mechanizedspace.com/audit4j</url >
14
+ </organization >
15
+ <licenses >
16
+ <license >
17
+ <name >The Apache Software License, Version 2.0</name >
18
+ <url >http://www.apache.org/licenses/LICENSE-2.0.txt</url >
19
+ <distribution >repo</distribution >
20
+ </license >
21
+ </licenses >
22
+ <scm >
23
+ <
connection >scm:git:
[email protected] :audit4j/audit4j-core.git</
connection >
24
+ <
developerConnection >scm:git:
[email protected] :audit4j/audit4j-core.git</
developerConnection >
25
+ <
url >scm:git:
[email protected] :audit4j/audit4j-core.git</
url >
26
+ <tag >1.0.0</tag >
27
+ </scm >
28
+ <developers >
29
+ <developer >
30
+ <id >janith</id >
31
+ <name >Janith Bandara</name >
32
+ <organization >Audit4j</organization >
33
+ <organizationUrl >http://www.mechanizedspace.com/audit4j</organizationUrl >
34
+ <roles >
35
+ <role >owner</role >
36
+ <role >developer</role >
37
+ </roles >
38
+ <timezone >0</timezone >
39
+ </developer >
40
+ </developers >
41
+
42
+ <parent >
43
+ <groupId >org.sonatype.oss</groupId >
44
+ <artifactId >oss-parent</artifactId >
45
+ <version >7</version >
46
+ </parent >
10
47
11
48
<properties >
12
- <hapi .version.stable>2.1</hapi .version.stable>
13
- <slf4j .version>1.7.5</slf4j .version>
14
- <log4j .version>1.2.17</log4j .version>
15
49
<spring .version>3.0.5.RELEASE</spring .version>
16
50
<aspectj .version>1.6.11</aspectj .version>
17
51
</properties >
20
54
<dependency >
21
55
<groupId >junit</groupId >
22
56
<artifactId >junit</artifactId >
23
- <version >3.8.1</version >
24
- <scope >test</scope >
57
+ <version >4.11</version >
25
58
</dependency >
59
+
26
60
<dependency >
27
- <groupId >org.slf4j </groupId >
28
- <artifactId >slf4j-api </artifactId >
29
- <version >1.7.6 </version >
61
+ <groupId >org.audit4j </groupId >
62
+ <artifactId >audit4j-core </artifactId >
63
+ <version >1.0.0 </version >
30
64
</dependency >
31
-
32
65
<!-- Spring AOP + AspectJ -->
33
66
<dependency >
34
67
<groupId >org.springframework</groupId >
47
80
</dependency >
48
81
</dependencies >
49
82
83
+
50
84
<build >
51
85
<plugins >
52
86
<plugin >
53
87
<groupId >org.apache.maven.plugins</groupId >
54
88
<artifactId >maven-compiler-plugin</artifactId >
89
+ <configuration >
90
+ <!-- or whatever version you use -->
91
+ <source >1.7</source >
92
+ <target >1.7</target >
93
+ </configuration >
55
94
</plugin >
56
95
<plugin >
57
96
<groupId >org.apache.maven.plugins</groupId >
58
- <artifactId >maven-eclipse-plugin</artifactId >
97
+ <artifactId >maven-javadoc-plugin</artifactId >
98
+ <executions >
99
+ <execution >
100
+ <id >attach-javadocs</id >
101
+ <!-- Restrict execution of source compilation to install -->
102
+ <phase >install</phase >
103
+ <goals >
104
+ <goal >jar</goal >
105
+ </goals >
106
+ </execution >
107
+ </executions >
59
108
</plugin >
60
109
<plugin >
61
110
<groupId >org.apache.maven.plugins</groupId >
62
- <artifactId >maven-jar-plugin</artifactId >
111
+ <artifactId >maven-source-plugin</artifactId >
112
+ <executions >
113
+ <execution >
114
+ <phase >install</phase >
115
+ <goals >
116
+ <goal >jar</goal >
117
+ </goals >
118
+ </execution >
119
+ </executions >
120
+ </plugin >
121
+ <plugin >
122
+ <groupId >org.apache.maven.plugins</groupId >
123
+ <artifactId >maven-release-plugin</artifactId >
124
+ <version >2.5</version >
63
125
<configuration >
64
- <archive >
65
- <manifest >
66
- <addClasspath >true</addClasspath >
67
- <mainClass >org.foo.App</mainClass >
68
- </manifest >
69
- </archive >
126
+ <tagNameFormat >v@{project.version}</tagNameFormat >
70
127
</configuration >
71
128
</plugin >
129
+ <plugin >
130
+ <groupId >org.apache.maven.plugins</groupId >
131
+ <artifactId >maven-eclipse-plugin</artifactId >
132
+ </plugin >
72
133
<plugin >
73
134
<groupId >org.apache.maven.plugins</groupId >
74
135
<artifactId >maven-surefire-plugin</artifactId >
75
136
</plugin >
137
+ <plugin >
138
+ <groupId >org.apache.maven.plugins</groupId >
139
+ <artifactId >maven-gpg-plugin</artifactId >
140
+ <executions >
141
+ <execution >
142
+ <id >sign-artifacts</id >
143
+ <phase >verify</phase >
144
+ <goals >
145
+ <goal >sign</goal >
146
+ </goals >
147
+ </execution >
148
+ </executions >
149
+ </plugin >
76
150
</plugins >
77
151
</build >
78
152
</project >
0 commit comments