Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit ac5f337

Browse files
Update pom.xml
Add more information for Githu-Release.
1 parent fa34cf0 commit ac5f337

File tree

1 file changed

+63
-26
lines changed

1 file changed

+63
-26
lines changed

pom.xml

Lines changed: 63 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,55 +4,92 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7+
<groupId>com.xdev-software</groupId>
8+
<artifactId>xapi-db-sybase</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<name>SqlEngine Database Adapter Sybase</name>
12+
<description>XAPI SqlEngine Database Adapter for Sybase</description>
13+
<url>https://github.com/xdev-software/xapi-db-sybase</url>
14+
15+
<scm>
16+
<url>https://github.com/xdev-software/xapi-db-sybase</url>
17+
<connection>https://github.com/xdev-software/xapi-db-sybase.git</connection>
18+
</scm>
19+
20+
<organization>
21+
<name>XDEV Software</name>
22+
<url>https://xdev-software.com</url>
23+
</organization>
24+
25+
<inceptionYear>2003</inceptionYear>
26+
<developers>
27+
<developer>
28+
<name>XDEV Software</name>
29+
<organization>XDEV Software</organization>
30+
<url>https://www.xdev-software.com</url>
31+
</developer>
32+
</developers>
33+
734
<licenses>
835
<license>
936
<name>GNU Lesser General Public License version 3</name>
1037
<url>https://www.gnu.org/licenses/lgpl-3.0.en.html</url>
1138
</license>
1239
</licenses>
1340

14-
15-
<groupId>groupId</groupId>
16-
<artifactId>Sybase</artifactId>
17-
<version>1.0-SNAPSHOT</version>
18-
1941
<properties>
2042
<maven.compiler.source>1.8</maven.compiler.source>
2143
<maven.compiler.target>1.8</maven.compiler.target>
2244
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2345
<xdev.xapi.version>6.0.1</xdev.xapi.version>
24-
<junit.version>4.13.2</junit.version>
2546
<license.licenseName>lgpl_v3</license.licenseName>
2647
</properties>
2748

28-
<organization>
29-
<name>XDEV Software</name>
30-
<url>https://xdev-software.com</url>
31-
</organization>
32-
<inceptionYear>2003</inceptionYear>
33-
<repositories>
34-
<repository>
35-
<id>ICM-Repository</id>
36-
<url>http://maven.icm.edu.pl/artifactory/repo/</url>
37-
</repository>
38-
</repositories>
39-
40-
4149
<dependencies>
4250
<dependency>
4351
<groupId>com.xdev-software</groupId>
4452
<artifactId>xapi</artifactId>
4553
<version>${xdev.xapi.version}</version>
4654
</dependency>
47-
48-
<dependency>
49-
<groupId>junit</groupId>
50-
<artifactId>junit</artifactId>
51-
<version>${junit.version}</version>
52-
<scope>test</scope>
53-
</dependency>
5455
</dependencies>
5556

57+
<repositories>
58+
<!-- The order of definitions matters. Explicitly defining central here
59+
to make sure it has the highest priority. -->
60+
<repository>
61+
<id>central</id>
62+
<url>https://repo.maven.apache.org/maven2</url>
63+
<snapshots>
64+
<enabled>false</enabled>
65+
</snapshots>
66+
</repository>
67+
</repositories>
68+
69+
70+
<pluginRepositories>
71+
<!-- The order of definitions matters. Explicitly defining central here
72+
to make sure it has the highest priority. -->
73+
<pluginRepository>
74+
<id>central</id>
75+
<url>https://repo.maven.apache.org/maven2</url>
76+
<snapshots>
77+
<enabled>false</enabled>
78+
</snapshots>
79+
</pluginRepository>
80+
</pluginRepositories>
81+
82+
<distributionManagement>
83+
<snapshotRepository>
84+
<id>ossrh</id>
85+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
86+
</snapshotRepository>
87+
<repository>
88+
<id>ossrh</id>
89+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
90+
</repository>
91+
</distributionManagement>
92+
5693
<build>
5794
<plugins>
5895

0 commit comments

Comments
 (0)