Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 0f23758

Browse files
committed
Fixed pom
1 parent 98f321b commit 0f23758

File tree

1 file changed

+57
-5
lines changed

1 file changed

+57
-5
lines changed

pom.xml

Lines changed: 57 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,34 @@
99
<packaging>jar</packaging>
1010

1111
<name>SqlEngine Database Adapter MySQL 5</name>
12+
<description>XAPI SqlEngine Database Adapter for MySQL 5</description>
13+
<url>https://github.com/xdev-software/xapi-db-mysql-5</url>
1214

15+
<scm>
16+
<url>https://github.com/xdev-software/xapi-db-mysql-5</url>
17+
<connection>https://github.com/xdev-software/xapi-db-mysql-5.git</connection>
18+
</scm>
19+
20+
<inceptionYear>2003</inceptionYear>
21+
22+
<organization>
23+
<name>XDEV Software</name>
24+
<url>https://xdev-software.com</url>
25+
</organization>
26+
27+
<developers>
28+
<developer>
29+
<name>XDEV Software</name>
30+
<organization>XDEV Software</organization>
31+
<url>https://www.xdev-software.com</url>
32+
</developer>
33+
</developers>
1334

1435
<licenses>
1536
<license>
1637
<name>GNU Lesser General Public License version 3</name>
1738
<url>https://www.gnu.org/licenses/lgpl-3.0.en.html</url>
39+
<distribution>repo</distribution>
1840
</license>
1941
</licenses>
2042

@@ -24,15 +46,45 @@
2446

2547
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2648
<license.licenseName>lgpl_v3</license.licenseName>
49+
2750
<maven.compiler.source>${javaVersion}</maven.compiler.source>
2851
<maven.compiler.target>${javaVersion}</maven.compiler.target>
2952
</properties>
3053

31-
<organization>
32-
<name>XDEV Software</name>
33-
<url>https://xdev-software.com</url>
34-
</organization>
35-
<inceptionYear>2003</inceptionYear>
54+
<repositories>
55+
<!-- The order of definitions matters. Explicitly defining central here
56+
to make sure it has the highest priority. -->
57+
<repository>
58+
<id>central</id>
59+
<url>https://repo.maven.apache.org/maven2</url>
60+
<snapshots>
61+
<enabled>false</enabled>
62+
</snapshots>
63+
</repository>
64+
</repositories>
65+
66+
<pluginRepositories>
67+
<!-- The order of definitions matters. Explicitly defining central here
68+
to make sure it has the highest priority. -->
69+
<pluginRepository>
70+
<id>central</id>
71+
<url>https://repo.maven.apache.org/maven2</url>
72+
<snapshots>
73+
<enabled>false</enabled>
74+
</snapshots>
75+
</pluginRepository>
76+
</pluginRepositories>
77+
78+
<distributionManagement>
79+
<snapshotRepository>
80+
<id>ossrh</id>
81+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
82+
</snapshotRepository>
83+
<repository>
84+
<id>ossrh</id>
85+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
86+
</repository>
87+
</distributionManagement>
3688

3789
<dependencies>
3890
<dependency>

0 commit comments

Comments
 (0)