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.handler-db </groupId >
5
- <artifactId >audit4j-handler- db</artifactId >
4
+ <groupId >org.audit4j</groupId >
5
+ <artifactId >audit4j-db</artifactId >
6
6
<packaging >jar</packaging >
7
- <version >2.0-SNAPSHOT</version >
8
7
<name >Audit4j - Database Handler</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, Database Handler</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-db.git</
connection >
24
+ <
developerConnection >scm:git:
[email protected] :audit4j/audit4j-db.git</
developerConnection >
25
+ <
url >scm:git:
[email protected] :audit4j/audit4j-db.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
- <slf4j .version>1.7.5</slf4j .version>
49
+ <spring .version>3.0.5.RELEASE</spring .version>
50
+ <aspectj .version>1.6.11</aspectj .version>
13
51
</properties >
14
52
15
53
<dependencies >
18
56
<artifactId >junit</artifactId >
19
57
<version >4.11</version >
20
58
</dependency >
59
+
21
60
<dependency >
22
- <groupId >org.slf4j </groupId >
23
- <artifactId >slf4j-api </artifactId >
24
- <version >1.7.6 </version >
61
+ <groupId >org.audit4j </groupId >
62
+ <artifactId >audit4j-core </artifactId >
63
+ <version >1.0.0 </version >
25
64
</dependency >
26
65
<dependency >
27
66
<groupId >c3p0</groupId >
35
74
</dependency >
36
75
</dependencies >
37
76
77
+
38
78
<build >
39
79
<plugins >
40
80
<plugin >
41
81
<groupId >org.apache.maven.plugins</groupId >
42
82
<artifactId >maven-compiler-plugin</artifactId >
83
+ <configuration >
84
+ <!-- or whatever version you use -->
85
+ <source >1.7</source >
86
+ <target >1.7</target >
87
+ </configuration >
43
88
</plugin >
44
89
<plugin >
45
90
<groupId >org.apache.maven.plugins</groupId >
46
- <artifactId >maven-eclipse-plugin</artifactId >
91
+ <artifactId >maven-javadoc-plugin</artifactId >
92
+ <executions >
93
+ <execution >
94
+ <id >attach-javadocs</id >
95
+ <!-- Restrict execution of source compilation to install -->
96
+ <phase >install</phase >
97
+ <goals >
98
+ <goal >jar</goal >
99
+ </goals >
100
+ </execution >
101
+ </executions >
102
+ </plugin >
103
+ <plugin >
104
+ <groupId >org.apache.maven.plugins</groupId >
105
+ <artifactId >maven-source-plugin</artifactId >
106
+ <executions >
107
+ <execution >
108
+ <phase >install</phase >
109
+ <goals >
110
+ <goal >jar</goal >
111
+ </goals >
112
+ </execution >
113
+ </executions >
47
114
</plugin >
48
115
<plugin >
49
116
<groupId >org.apache.maven.plugins</groupId >
50
- <artifactId >maven-jar-plugin</artifactId >
117
+ <artifactId >maven-release-plugin</artifactId >
118
+ <version >2.5</version >
119
+ <configuration >
120
+ <tagNameFormat >v@{project.version}</tagNameFormat >
121
+ </configuration >
122
+ </plugin >
123
+ <plugin >
124
+ <groupId >org.apache.maven.plugins</groupId >
125
+ <artifactId >maven-eclipse-plugin</artifactId >
51
126
</plugin >
52
127
<plugin >
53
128
<groupId >org.apache.maven.plugins</groupId >
54
129
<artifactId >maven-surefire-plugin</artifactId >
55
130
</plugin >
131
+ <plugin >
132
+ <groupId >org.apache.maven.plugins</groupId >
133
+ <artifactId >maven-gpg-plugin</artifactId >
134
+ <executions >
135
+ <execution >
136
+ <id >sign-artifacts</id >
137
+ <phase >verify</phase >
138
+ <goals >
139
+ <goal >sign</goal >
140
+ </goals >
141
+ </execution >
142
+ </executions >
143
+ </plugin >
56
144
</plugins >
57
145
</build >
58
146
</project >
0 commit comments