Skip to content

Commit dbb9404

Browse files
committed
Merge pull request #22 from ColinHebert/pom-file
Small improvements to the pom file
2 parents d7af0cf + 47be88e commit dbb9404

File tree

1 file changed

+21
-16
lines changed

1 file changed

+21
-16
lines changed

pom.xml

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3-
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
5-
<groupId>org.fluentd</groupId>
6-
<artifactId>fluent-logger</artifactId>
7-
<name>Fluent Logger for Java</name>
8-
<description>Java implementation of structured logger for Fluent.</description>
9-
<version>0.3.0-SNAPSHOT</version>
10-
<packaging>jar</packaging>
11-
<url>https://github.com/fluent/fluent-logger-java</url>
124

135
<parent>
146
<groupId>org.sonatype.oss</groupId>
157
<artifactId>oss-parent</artifactId>
168
<version>7</version>
179
</parent>
1810

11+
<groupId>org.fluentd</groupId>
12+
<artifactId>fluent-logger</artifactId>
13+
<version>0.3.0-SNAPSHOT</version>
14+
<packaging>jar</packaging>
15+
16+
<name>Fluent Logger for Java</name>
17+
<description>Java implementation of structured logger for Fluent.</description>
18+
<url>https://github.com/fluent/fluent-logger-java</url>
19+
<inceptionYear>2011</inceptionYear>
1920
<licenses>
2021
<license>
2122
<name>The Apache Software License, Version 2.0</name>
@@ -24,12 +25,6 @@
2425
</license>
2526
</licenses>
2627

27-
<scm>
28-
<connection>scm:git:git://github.com/fluent/fluent-logger-java.git</connection>
29-
<developerConnection>scm:git:git@github.com:fluent/fluent-logger-java.git</developerConnection>
30-
<url>scm:git:git://github.com/fluent/fluent-logger-java.git</url>
31-
</scm>
32-
3328
<developers>
3429
<developer>
3530
<id>muga</id>
@@ -38,10 +33,20 @@
3833
</developer>
3934
</developers>
4035

36+
<scm>
37+
<url>https://github.com/fluent/fluent-logger-java.git</url>
38+
<connection>scm:git:git://github.com/fluent/fluent-logger-java.git</connection>
39+
<developerConnection>scm:git:git@github.com:fluent/fluent-logger-java.git</developerConnection>
40+
<tag>HEAD</tag>
41+
</scm>
4142
<issueManagement>
4243
<system>GitHub</system>
4344
<url>https://github.com/fluent/fluent-logger-java/issues</url>
4445
</issueManagement>
46+
<ciManagement>
47+
<system>Travis-CI</system>
48+
<url>https://travis-ci.org/fluent/fluent-logger-java/issues</url>
49+
</ciManagement>
4550

4651
<properties>
4752
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)