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

Commit bfe131a

Browse files
Update Readme and pom
Added further information about the company and the adapter. Also added the support-block to the readme.
1 parent 15aa9d6 commit bfe131a

File tree

2 files changed

+68
-10
lines changed

2 files changed

+68
-10
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ We encourage you to read the [contribution instructions by GitHub](https://guide
3232
The XDEV Application Framework is released under [GNU Lesser General Public License version 3](https://www.gnu.org/licenses/lgpl-3.0.en.html) aka LGPL 3<br/>
3333
View the [summary of all dependencies online](https://xdev-software.github.io/xapi-db-db2/dependencies/)
3434

35+
## Support
36+
If you need support as soon as possible and you can not wait for any pull request, feel free to use our support
37+
https://xdev.software/en/services/support
38+
3539
## Releasing [![Build](https://img.shields.io/github/workflow/status/xdev-software/xapi-db-db2/Release?label=Release)](https://github.com/xdev-software/xapi-db-db2/actions/workflows/release.yml)
3640
Consider doing a [test-deployment](https://github.com/xdev-software/xapi-db-db2/actions/workflows/test-deploy.yml?query=branch%3Adevelop) before actually releasing.
3741

pom.xml

Lines changed: 64 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,40 @@
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-db2</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<name>SqlEngine Database Adapter DB2</name>
12+
<description>XAPI SqlEngine Database Adapter for DB2</description>
13+
<url>https://github.com/xdev-software/xapi-db-db2</url>
14+
15+
<scm>
16+
<url>https://github.com/xdev-software/xapi-db-db2</url>
17+
<connection>https://github.com/xdev-software/xapi-db-db2.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-
<groupId>groupId</groupId>
15-
<artifactId>DB2</artifactId>
16-
<version>1.0-SNAPSHOT</version>
17-
1841
<properties>
1942
<maven.compiler.source>1.8</maven.compiler.source>
2043
<maven.compiler.target>1.8</maven.compiler.target>
@@ -25,12 +48,6 @@
2548
<license.licenseName>lgpl_v3</license.licenseName>
2649
</properties>
2750

28-
<organization>
29-
<name>XDEV Software</name>
30-
<url>https://xdev-software.com</url>
31-
</organization>
32-
<inceptionYear>2003</inceptionYear>
33-
3451

3552
<dependencies>
3653

@@ -56,6 +73,43 @@
5673

5774
</dependencies>
5875

76+
<repositories>
77+
<!-- The order of definitions matters. Explicitly defining central here
78+
to make sure it has the highest priority. -->
79+
<repository>
80+
<id>central</id>
81+
<url>https://repo.maven.apache.org/maven2</url>
82+
<snapshots>
83+
<enabled>false</enabled>
84+
</snapshots>
85+
</repository>
86+
</repositories>
87+
88+
89+
<pluginRepositories>
90+
<!-- The order of definitions matters. Explicitly defining central here
91+
to make sure it has the highest priority. -->
92+
<pluginRepository>
93+
<id>central</id>
94+
<url>https://repo.maven.apache.org/maven2</url>
95+
<snapshots>
96+
<enabled>false</enabled>
97+
</snapshots>
98+
</pluginRepository>
99+
</pluginRepositories>
100+
101+
<distributionManagement>
102+
<snapshotRepository>
103+
<id>ossrh</id>
104+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
105+
</snapshotRepository>
106+
<repository>
107+
<id>ossrh</id>
108+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
109+
</repository>
110+
</distributionManagement>
111+
112+
59113
<build>
60114
<plugins>
61115

0 commit comments

Comments
 (0)