Skip to content

Commit 4105a99

Browse files
author
dgreen
committed
Configure project information
1 parent 8ddbe59 commit 4105a99

File tree

1 file changed

+112
-98
lines changed

1 file changed

+112
-98
lines changed

pom.xml

Lines changed: 112 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -1,99 +1,113 @@
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/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
5-
<groupId>org.tarantool</groupId>
6-
<artifactId>connector</artifactId>
7-
<version>0.0.3-SNAPSHOT</version>
8-
<packaging>jar</packaging>
9-
10-
<name>tarantool-connector</name>
11-
<url>http://tarantool.org</url>
12-
13-
<repositories>
14-
<repository>
15-
<id>fluido-skin-staging</id>
16-
<url>https://repository.apache.org/content/repositories/maven-staging-group/</url>
17-
</repository>
18-
</repositories>
19-
20-
21-
22-
<properties>
23-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24-
</properties>
25-
<dependencies>
26-
<dependency>
27-
<groupId>junit</groupId>
28-
<artifactId>junit</artifactId>
29-
<version>4.10</version>
30-
<scope>test</scope>
31-
</dependency>
32-
</dependencies>
33-
<distributionManagement>
34-
<site>
35-
<id>tarantool-java-project-site</id>
36-
<url>gitsite:git@github.com/dgreenru/tarantool-java.git</url>
37-
</site>
38-
<repository>
39-
<id>repo</id>
40-
<url>https://github.com/dgreenru/tarantool-java/raw/master/mvn-repo/releases</url>
41-
</repository>
42-
<snapshotRepository>
43-
<id>snapshot-repo</id>
44-
<url>https://github.com/dgreenru/tarantool-java/raw/master/mvn-repo/snapshots</url>
45-
</snapshotRepository>
46-
</distributionManagement>
47-
<scm>
48-
<connection>scm:git:git://github.com/dgreenru/tarantool-java.git</connection>
49-
<developerConnection>scm:git:git+ssh://git@github.com/dgreenru/tarantool-java.git</developerConnection>
50-
<url>http://github.com/dgreen/tarantool-java</url>
51-
</scm>
52-
<build>
53-
<extensions>
54-
<extension>
55-
<groupId>org.apache.maven.scm</groupId>
56-
<artifactId>maven-scm-provider-gitexe</artifactId>
57-
<version>1.3</version>
58-
</extension>
59-
<extension>
60-
<groupId>org.apache.maven.scm</groupId>
61-
<artifactId>maven-scm-manager-plexus</artifactId>
62-
<version>1.3</version>
63-
</extension>
64-
<extension>
65-
<groupId>com.github.stephenc.wagon</groupId>
66-
<artifactId>wagon-gitsite</artifactId>
67-
<version>0.4.1</version>
68-
</extension>
69-
</extensions>
70-
<plugins>
71-
<plugin>
72-
<groupId>org.apache.maven.plugins</groupId>
73-
<artifactId>maven-site-plugin</artifactId>
74-
<version>3.1</version>
75-
<configuration>
76-
<reportPlugins>
77-
<plugin>
78-
<groupId>org.apache.maven.plugins</groupId>
79-
<artifactId>maven-javadoc-plugin</artifactId>
80-
<version>2.8</version>
81-
<reportSets>
82-
<reportSet>
83-
<id>default</id>
84-
<configuration />
85-
<reports>
86-
<report>javadoc</report>
87-
</reports>
88-
</reportSet>
89-
</reportSets>
90-
</plugin>
91-
</reportPlugins>
92-
</configuration>
93-
</plugin>
94-
</plugins>
95-
</build>
96-
97-
98-
1+
<?xml version="1.0"?>
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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>org.tarantool</groupId>
5+
<artifactId>connector</artifactId>
6+
<version>0.0.3-SNAPSHOT</version>
7+
<packaging>jar</packaging>
8+
<name>Tarantool Connector for Java</name>
9+
<url>http://dgreenru.github.com/tarantool-java</url>
10+
<repositories>
11+
<repository>
12+
<id>fluido-skin-staging</id>
13+
<url>https://repository.apache.org/content/repositories/maven-staging-group/</url>
14+
</repository>
15+
</repositories>
16+
<developers>
17+
<developer>
18+
<id>dgreenru</id>
19+
<name>Dmitry Grytsovets</name>
20+
<email>dmitry.grytsovets@gmail.com</email>
21+
<url>http://dgreenru.github.com/</url>
22+
<timezone>+4</timezone>
23+
</developer>
24+
</developers>
25+
<properties>
26+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
27+
</properties>
28+
<dependencies>
29+
<dependency>
30+
<groupId>junit</groupId>
31+
<artifactId>junit</artifactId>
32+
<version>4.10</version>
33+
<scope>test</scope>
34+
</dependency>
35+
</dependencies>
36+
<distributionManagement>
37+
<site>
38+
<id>tarantool-java-project-site</id>
39+
<url>gitsite:git@github.com/dgreenru/tarantool-java.git</url>
40+
</site>
41+
<repository>
42+
<id>release-repo</id>
43+
<url>https://github.com/dgreenru/tarantool-java/raw/master/mvn-repo/releases</url>
44+
</repository>
45+
<snapshotRepository>
46+
<id>snapshot-repo</id>
47+
<url>https://github.com/dgreenru/tarantool-java/raw/master/mvn-repo/snapshots</url>
48+
</snapshotRepository>
49+
</distributionManagement>
50+
<scm>
51+
<connection>scm:git:git://github.com/dgreenru/tarantool-java.git</connection>
52+
<developerConnection>scm:git:git+ssh://git@github.com/dgreenru/tarantool-java.git</developerConnection>
53+
<url>http://github.com/dgreen/tarantool-java</url>
54+
</scm>
55+
<issueManagement>
56+
<system>GitHub</system>
57+
<url>http://github.com/dgreenru/tarantool-java/issues</url>
58+
</issueManagement>
59+
<build>
60+
<extensions>
61+
<extension>
62+
<groupId>org.apache.maven.scm</groupId>
63+
<artifactId>maven-scm-provider-gitexe</artifactId>
64+
<version>1.3</version>
65+
</extension>
66+
<extension>
67+
<groupId>org.apache.maven.scm</groupId>
68+
<artifactId>maven-scm-manager-plexus</artifactId>
69+
<version>1.3</version>
70+
</extension>
71+
<extension>
72+
<groupId>com.github.stephenc.wagon</groupId>
73+
<artifactId>wagon-gitsite</artifactId>
74+
<version>0.4.1</version>
75+
</extension>
76+
</extensions>
77+
<plugins>
78+
<plugin>
79+
<groupId>org.apache.maven.plugins</groupId>
80+
<artifactId>maven-site-plugin</artifactId>
81+
<version>3.1</version>
82+
<configuration>
83+
<reportPlugins>
84+
<plugin>
85+
<groupId>org.apache.maven.plugins</groupId>
86+
<artifactId>maven-javadoc-plugin</artifactId>
87+
<version>2.8</version>
88+
<reportSets>
89+
<reportSet>
90+
<id>default</id>
91+
<configuration/>
92+
<reports>
93+
<report>javadoc</report>
94+
</reports>
95+
</reportSet>
96+
</reportSets>
97+
</plugin>
98+
<plugin>
99+
<groupId>org.apache.maven.plugins</groupId>
100+
<artifactId>maven-project-info-reports-plugin</artifactId>
101+
<version>2.5.1</version>
102+
<reports>
103+
<report>issue-tracking</report>
104+
<report>project-team</report>
105+
<report>scm</report>
106+
</reports>
107+
</plugin>
108+
</reportPlugins>
109+
</configuration>
110+
</plugin>
111+
</plugins>
112+
</build>
99113
</project>

0 commit comments

Comments
 (0)