Skip to content

Commit 1b7094f

Browse files
author
Henning Schmiedehausen
committed
add ness build skeleton
1 parent b37e5a5 commit 1b7094f

File tree

2 files changed

+85
-0
lines changed

2 files changed

+85
-0
lines changed

.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
pkg/
2+
*.o
3+
*.lo
4+
*.pc
5+
*.log
6+
*.status
7+
.deps/
8+
*.iml
9+
*.ipr
10+
*.iws
11+
coverage/
12+
target/
13+
.rakeTasks
14+
.rvmrc
15+
.idea
16+
.classpath
17+
.project
18+
.settings

pom.xml

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<parent>
7+
<groupId>com.nesscomputing</groupId>
8+
<artifactId>ness-oss-parent</artifactId>
9+
<version>7</version>
10+
</parent>
11+
12+
<groupId>org.syslog4j</groupId>
13+
<artifactId>syslog4j</artifactId>
14+
<version>0.9.47-NESS-1-SNAPSHOT</version>
15+
<packaging>jar</packaging>
16+
<name>syslog4j</name>
17+
<url>http://www.syslog4j.org</url>
18+
19+
<licenses>
20+
<license>
21+
<name>LGPL</name>
22+
<url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
23+
</license>
24+
</licenses>
25+
26+
<description>Syslog4j provides client and server implementations of the BSD Syslog protocol (RFC 3164) and the structured syslog" protocol (RFC5424).</description>
27+
28+
<scm>
29+
<connection>scm:git:[email protected]:NessComputing/syslog4j.git</connection>
30+
<developerConnection>scm:git:[email protected]:NessComputing/syslog4j.git</developerConnection>
31+
<url>https://gtihub.com/NessComputing/syslog4j</url>
32+
</scm>
33+
34+
<dependencies>
35+
<dependency>
36+
<groupId>log4j</groupId>
37+
<artifactId>log4j</artifactId>
38+
<version>1.2.16</version>
39+
</dependency>
40+
41+
<dependency>
42+
<groupId>joda-time</groupId>
43+
<artifactId>joda-time</artifactId>
44+
</dependency>
45+
46+
<dependency>
47+
<groupId>commons-pool</groupId>
48+
<artifactId>commons-pool</artifactId>
49+
<version>1.5.4</version>
50+
<optional>true</optional>
51+
</dependency>
52+
53+
<dependency>
54+
<groupId>com.sun.jna</groupId>
55+
<artifactId>jna</artifactId>
56+
<version>3.0.9</version>
57+
<optional>true</optional>
58+
</dependency>
59+
60+
<dependency>
61+
<groupId>junit</groupId>
62+
<artifactId>junit-dep</artifactId>
63+
<version>4.8.1</version>
64+
<scope>test</scope>
65+
</dependency>
66+
</dependencies>
67+
</project>

0 commit comments

Comments
 (0)