Skip to content

Commit 1965f10

Browse files
committed
polishing
1 parent 2275191 commit 1965f10

File tree

1 file changed

+75
-36
lines changed

1 file changed

+75
-36
lines changed

pom.xml

Lines changed: 75 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,125 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<!-- Copyright (c) 2014-2016 Janith Bandara, This source is a part of -->
4+
<!-- Audit4j - An open source auditing framework. -->
5+
<!-- http://audit4j.org -->
6+
<!-- -->
7+
<!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
8+
<!-- you may not use this file except in compliance with the License. -->
9+
<!-- You may obtain a copy of the License at -->
10+
<!-- -->
11+
<!-- http://www.apache.org/licenses/LICENSE-2.0 -->
12+
<!-- -->
13+
<!-- Unless required by applicable law or agreed to in writing, software -->
14+
<!-- distributed under the License is distributed on an "AS IS" BASIS, -->
15+
<!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
16+
<!-- See the License for the specific language governing permissions and -->
17+
<!-- limitations under the License. -->
18+
119
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
220
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
321
<modelVersion>4.0.0</modelVersion>
422
<groupId>org.audit4j</groupId>
523
<artifactId>audit4j-db</artifactId>
624
<packaging>jar</packaging>
725
<name>Audit4j - Database Handler</name>
8-
<version>2.4.1-RC2</version>
26+
<version>2.4.1</version>
927
<url>http://audit4j.org</url>
1028
<description>Audit4j - An open-source auditing framework, Database handler</description>
1129
<organization>
1230
<name>Audit4j</name>
1331
<url>http://audit4j.org</url>
1432
</organization>
33+
34+
<developers>
35+
<developer>
36+
<id>janith</id>
37+
<name>Janith Bandara</name>
38+
<organization>Audit4j</organization>
39+
<organizationUrl>http://audit4j.org</organizationUrl>
40+
<email>[email protected]</email>
41+
<roles>
42+
<role>Project Administrator</role>
43+
<role>Developer</role>
44+
</roles>
45+
<timezone>+05:30</timezone>
46+
</developer>
47+
</developers>
48+
1549
<licenses>
1650
<license>
1751
<name>The Apache Software License, Version 2.0</name>
1852
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
1953
<distribution>repo</distribution>
2054
</license>
2155
</licenses>
56+
2257
<issueManagement>
2358
<system>github</system>
2459
<url>https://github.com/audit4j/audit4j-core/issues</url>
2560
</issueManagement>
61+
2662
<scm>
2763
<connection>scm:git:[email protected]:audit4j/audit4j-db.git</connection>
2864
<developerConnection>scm:git:[email protected]:audit4j/audit4j-db.git</developerConnection>
2965
<url>scm:git:[email protected]:audit4j/audit4j-db.git</url>
3066
<tag>2.4.0</tag>
3167
</scm>
32-
<developers>
33-
<developer>
34-
<id>janith</id>
35-
<name>Janith Bandara</name>
36-
<organization>Audit4j</organization>
37-
<organizationUrl>http://audit4j.org</organizationUrl>
38-
<email>[email protected]</email>
39-
<roles>
40-
<role>owner</role>
41-
<role>developer</role>
42-
</roles>
43-
<timezone>+05:30</timezone>
44-
</developer>
45-
</developers>
46-
68+
69+
<ciManagement>
70+
<system>travis-ci</system>
71+
<url>https://travis-ci.org/audit4j/audit4j-db</url>
72+
</ciManagement>
73+
74+
<distributionManagement>
75+
<repository>
76+
<id>oss.sonatype.org</id>
77+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
78+
</repository>
79+
<snapshotRepository>
80+
<id>oss.sonatype.org</id>
81+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
82+
</snapshotRepository>
83+
</distributionManagement>
84+
4785
<properties>
48-
<audit4j.version>2.4.1-RC1</audit4j.version>
86+
<audit4j.version>2.4.1</audit4j.version>
87+
<junit.version>4.12</junit.version>
88+
<log4j.version>2.5</log4j.version>
89+
<slf4j-log4j12.version>1.7.16</slf4j-log4j12.version>
90+
<hikaricp.version>2.4.3</hikaricp.version>
91+
<hsqldb.version>2.3.3</hsqldb.version>
92+
<guava.version>19.0</guava.version>
4993
</properties>
5094

5195
<dependencies>
96+
<!-- Test dependencies -->
5297
<dependency>
5398
<groupId>junit</groupId>
5499
<artifactId>junit</artifactId>
55-
<version>4.12</version>
100+
<version>${junit.version}</version>
56101
<scope>test</scope>
57102
</dependency>
58103
<dependency>
59104
<groupId>org.apache.logging.log4j</groupId>
60105
<artifactId>log4j-api</artifactId>
61-
<version>2.5</version>
106+
<version>${log4j.version}</version>
62107
<scope>test</scope>
63108
</dependency>
64109
<dependency>
65110
<groupId>org.apache.logging.log4j</groupId>
66111
<artifactId>log4j-core</artifactId>
67-
<version>2.5</version>
112+
<version>${log4j.version}</version>
68113
<scope>test</scope>
69114
</dependency>
70115
<dependency>
71116
<groupId>org.slf4j</groupId>
72117
<artifactId>slf4j-log4j12</artifactId>
73-
<version>1.7.16</version>
118+
<version>${slf4j-log4j12.version}</version>
74119
<scope>test</scope>
75120
</dependency>
76121

122+
<!-- Project dependencies -->
77123
<dependency>
78124
<groupId>org.audit4j</groupId>
79125
<artifactId>audit4j-core</artifactId>
@@ -83,31 +129,20 @@
83129
<dependency>
84130
<groupId>com.zaxxer</groupId>
85131
<artifactId>HikariCP</artifactId>
86-
<version>2.4.3</version>
132+
<version>${hikaricp.version}</version>
87133
</dependency>
88134
<dependency>
89135
<groupId>org.hsqldb</groupId>
90136
<artifactId>hsqldb</artifactId>
91-
<version>2.3.3</version>
137+
<version>${hsqldb.version}</version>
92138
</dependency>
93139
<dependency>
94140
<groupId>com.google.guava</groupId>
95141
<artifactId>guava</artifactId>
96-
<version>19.0</version>
142+
<version>${guava.version}</version>
97143
</dependency>
98144
</dependencies>
99-
100-
<distributionManagement>
101-
<repository>
102-
<id>oss.sonatype.org</id>
103-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
104-
</repository>
105-
<snapshotRepository>
106-
<id>oss.sonatype.org</id>
107-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
108-
</snapshotRepository>
109-
</distributionManagement>
110-
145+
111146
<build>
112147
<plugins>
113148
<plugin>
@@ -157,6 +192,10 @@
157192
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
158193
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
159194
</manifest>
195+
<manifestEntries>
196+
<url>${project.url}</url>
197+
<copyright>2014-2016 Janith Bandara</copyright>
198+
</manifestEntries>
160199
</archive>
161200
</configuration>
162201
</plugin>

0 commit comments

Comments
 (0)