Skip to content

Commit ff834b2

Browse files
committed
fixed audit4j-core dependecy resolution
1 parent b637ec2 commit ff834b2

File tree

1 file changed

+98
-10
lines changed

1 file changed

+98
-10
lines changed

pom.xml

Lines changed: 98 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,53 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<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>
66
<packaging>jar</packaging>
7-
<version>2.0-SNAPSHOT</version>
87
<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>
1047

1148
<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>
1351
</properties>
1452

1553
<dependencies>
@@ -18,10 +56,11 @@
1856
<artifactId>junit</artifactId>
1957
<version>4.11</version>
2058
</dependency>
59+
2160
<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>
2564
</dependency>
2665
<dependency>
2766
<groupId>c3p0</groupId>
@@ -35,24 +74,73 @@
3574
</dependency>
3675
</dependencies>
3776

77+
3878
<build>
3979
<plugins>
4080
<plugin>
4181
<groupId>org.apache.maven.plugins</groupId>
4282
<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>
4388
</plugin>
4489
<plugin>
4590
<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>
47114
</plugin>
48115
<plugin>
49116
<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>
51126
</plugin>
52127
<plugin>
53128
<groupId>org.apache.maven.plugins</groupId>
54129
<artifactId>maven-surefire-plugin</artifactId>
55130
</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>
56144
</plugins>
57145
</build>
58146
</project>

0 commit comments

Comments
 (0)