Skip to content

Commit c927864

Browse files
committed
Reindent pom.xml
1 parent dec6940 commit c927864

1 file changed

Lines changed: 123 additions & 123 deletions

File tree

pom.xml

Lines changed: 123 additions & 123 deletions
Original file line numberDiff line numberDiff line change
@@ -1,126 +1,126 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.maxmind.db</groupId>
5-
<artifactId>maxminddb</artifactId>
6-
<version>0.3.1-SNAPSHOT</version>
7-
<packaging>jar</packaging>
8-
<name>MaxMind DB Reader</name>
9-
<description>Reader for MaxMind DB</description>
10-
<url>http://dev.maxmind.com/</url>
11-
<licenses>
12-
<license>
13-
<name>Apache License 2.0</name>
14-
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
15-
<distribution>repo</distribution>
16-
</license>
17-
</licenses>
18-
<organization>
19-
<name>MaxMind, Inc.</name>
20-
<url>http://www.maxmind.com/</url>
21-
</organization>
22-
<scm>
23-
<url>https://github.com/maxmind/MaxMind-DB-Reader-java</url>
24-
<connection>scm:git:git@git.maxmind.com:MaxMind-DB-Reader-java</connection>
25-
<developerConnection>scm:git:git@git.maxmind.com:MaxMind-DB-Reader-java</developerConnection>
26-
</scm>
27-
<issueManagement>
28-
<url>https://github.com/maxmind/MaxMind-DB-Reader-java/issues</url>
29-
<system>GitHub</system>
30-
</issueManagement>
31-
<developers>
32-
<developer>
33-
<id>oschwald</id>
34-
<name>Gregory J. Oschwald</name>
35-
<email>goschwald@maxmind.com</email>
36-
</developer>
37-
</developers>
38-
<dependencies>
39-
<dependency>
40-
<groupId>junit</groupId>
41-
<artifactId>junit</artifactId>
42-
<version>4.11</version>
43-
<scope>test</scope>
44-
</dependency>
45-
<dependency>
46-
<groupId>com.google.guava</groupId>
47-
<artifactId>guava</artifactId>
48-
<version>14.0.1</version>
49-
</dependency>
50-
<dependency>
51-
<groupId>com.fasterxml.jackson.core</groupId>
52-
<artifactId>jackson-databind</artifactId>
53-
<version>2.2.0</version>
54-
</dependency>
55-
</dependencies>
56-
<properties>
57-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
58-
</properties>
59-
<build>
60-
<plugins>
61-
<plugin>
62-
<groupId>org.apache.maven.plugins</groupId>
63-
<artifactId>maven-gpg-plugin</artifactId>
64-
<version>1.4</version>
65-
<executions>
66-
<execution>
67-
<id>sign-artifacts</id>
68-
<phase>verify</phase>
69-
<goals>
70-
<goal>sign</goal>
71-
</goals>
72-
</execution>
73-
</executions>
74-
</plugin>
75-
<plugin>
76-
<groupId>org.apache.maven.plugins</groupId>
77-
<artifactId>maven-compiler-plugin</artifactId>
78-
<version>3.1</version>
79-
<configuration>
80-
<source>1.6</source>
81-
<target>1.6</target>
82-
</configuration>
83-
</plugin>
84-
<plugin>
85-
<groupId>org.eluder.coveralls</groupId>
86-
<artifactId>coveralls-maven-plugin</artifactId>
87-
<version>1.2.0</version>
88-
<configuration>
89-
<serviceName>travis-ci</serviceName>
90-
</configuration>
91-
</plugin>
92-
<plugin>
93-
<groupId>org.codehaus.mojo</groupId>
94-
<artifactId>cobertura-maven-plugin</artifactId>
95-
<version>2.5.2</version>
96-
<configuration>
97-
<format>xml</format>
98-
<maxmem>256m</maxmem>
99-
</configuration>
100-
</plugin>
101-
<plugin>
102-
<groupId>org.codehaus.mojo</groupId>
103-
<artifactId>exec-maven-plugin</artifactId>
104-
<version>1.1</version>
105-
<executions>
106-
<execution>
107-
<phase>initialize</phase>
108-
<id>invoke build</id>
109-
<goals>
110-
<goal>exec</goal>
111-
</goals>
112-
</execution>
113-
</executions>
114-
<configuration>
115-
<executable>git</executable>
116-
<commandlineArgs>submodule update --init --recursive</commandlineArgs>
117-
</configuration>
118-
</plugin>
119-
</plugins>
120-
</build>
121-
<parent>
122-
<groupId>org.sonatype.oss</groupId>
123-
<artifactId>oss-parent</artifactId>
124-
<version>7</version>
125-
</parent>
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.maxmind.db</groupId>
5+
<artifactId>maxminddb</artifactId>
6+
<version>0.3.1-SNAPSHOT</version>
7+
<packaging>jar</packaging>
8+
<name>MaxMind DB Reader</name>
9+
<description>Reader for MaxMind DB</description>
10+
<url>http://dev.maxmind.com/</url>
11+
<licenses>
12+
<license>
13+
<name>Apache License 2.0</name>
14+
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
15+
<distribution>repo</distribution>
16+
</license>
17+
</licenses>
18+
<organization>
19+
<name>MaxMind, Inc.</name>
20+
<url>http://www.maxmind.com/</url>
21+
</organization>
22+
<scm>
23+
<url>https://github.com/maxmind/MaxMind-DB-Reader-java</url>
24+
<connection>scm:git:git@git.maxmind.com:MaxMind-DB-Reader-java</connection>
25+
<developerConnection>scm:git:git@git.maxmind.com:MaxMind-DB-Reader-java</developerConnection>
26+
</scm>
27+
<issueManagement>
28+
<url>https://github.com/maxmind/MaxMind-DB-Reader-java/issues</url>
29+
<system>GitHub</system>
30+
</issueManagement>
31+
<developers>
32+
<developer>
33+
<id>oschwald</id>
34+
<name>Gregory J. Oschwald</name>
35+
<email>goschwald@maxmind.com</email>
36+
</developer>
37+
</developers>
38+
<dependencies>
39+
<dependency>
40+
<groupId>junit</groupId>
41+
<artifactId>junit</artifactId>
42+
<version>4.11</version>
43+
<scope>test</scope>
44+
</dependency>
45+
<dependency>
46+
<groupId>com.google.guava</groupId>
47+
<artifactId>guava</artifactId>
48+
<version>14.0.1</version>
49+
</dependency>
50+
<dependency>
51+
<groupId>com.fasterxml.jackson.core</groupId>
52+
<artifactId>jackson-databind</artifactId>
53+
<version>2.2.0</version>
54+
</dependency>
55+
</dependencies>
56+
<properties>
57+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
58+
</properties>
59+
<build>
60+
<plugins>
61+
<plugin>
62+
<groupId>org.apache.maven.plugins</groupId>
63+
<artifactId>maven-gpg-plugin</artifactId>
64+
<version>1.4</version>
65+
<executions>
66+
<execution>
67+
<id>sign-artifacts</id>
68+
<phase>verify</phase>
69+
<goals>
70+
<goal>sign</goal>
71+
</goals>
72+
</execution>
73+
</executions>
74+
</plugin>
75+
<plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-compiler-plugin</artifactId>
78+
<version>3.1</version>
79+
<configuration>
80+
<source>1.6</source>
81+
<target>1.6</target>
82+
</configuration>
83+
</plugin>
84+
<plugin>
85+
<groupId>org.eluder.coveralls</groupId>
86+
<artifactId>coveralls-maven-plugin</artifactId>
87+
<version>1.2.0</version>
88+
<configuration>
89+
<serviceName>travis-ci</serviceName>
90+
</configuration>
91+
</plugin>
92+
<plugin>
93+
<groupId>org.codehaus.mojo</groupId>
94+
<artifactId>cobertura-maven-plugin</artifactId>
95+
<version>2.5.2</version>
96+
<configuration>
97+
<format>xml</format>
98+
<maxmem>256m</maxmem>
99+
</configuration>
100+
</plugin>
101+
<plugin>
102+
<groupId>org.codehaus.mojo</groupId>
103+
<artifactId>exec-maven-plugin</artifactId>
104+
<version>1.1</version>
105+
<executions>
106+
<execution>
107+
<phase>initialize</phase>
108+
<id>invoke build</id>
109+
<goals>
110+
<goal>exec</goal>
111+
</goals>
112+
</execution>
113+
</executions>
114+
<configuration>
115+
<executable>git</executable>
116+
<commandlineArgs>submodule update --init --recursive</commandlineArgs>
117+
</configuration>
118+
</plugin>
119+
</plugins>
120+
</build>
121+
<parent>
122+
<groupId>org.sonatype.oss</groupId>
123+
<artifactId>oss-parent</artifactId>
124+
<version>7</version>
125+
</parent>
126126
</project>

0 commit comments

Comments
 (0)