|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
5 | 5 | <modelVersion>4.0.0</modelVersion>
|
6 | 6 |
|
| 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 | + |
7 | 34 | <licenses>
|
8 | 35 | <license>
|
9 | 36 | <name>GNU Lesser General Public License version 3</name>
|
10 | 37 | <url>https://www.gnu.org/licenses/lgpl-3.0.en.html</url>
|
11 | 38 | </license>
|
12 | 39 | </licenses>
|
13 | 40 |
|
14 |
| - <groupId>groupId</groupId> |
15 |
| - <artifactId>DB2</artifactId> |
16 |
| - <version>1.0-SNAPSHOT</version> |
17 |
| - |
18 | 41 | <properties>
|
19 | 42 | <maven.compiler.source>1.8</maven.compiler.source>
|
20 | 43 | <maven.compiler.target>1.8</maven.compiler.target>
|
|
25 | 48 | <license.licenseName>lgpl_v3</license.licenseName>
|
26 | 49 | </properties>
|
27 | 50 |
|
28 |
| - <organization> |
29 |
| - <name>XDEV Software</name> |
30 |
| - <url>https://xdev-software.com</url> |
31 |
| - </organization> |
32 |
| - <inceptionYear>2003</inceptionYear> |
33 |
| - |
34 | 51 |
|
35 | 52 | <dependencies>
|
36 | 53 |
|
|
56 | 73 |
|
57 | 74 | </dependencies>
|
58 | 75 |
|
| 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 | + |
59 | 113 | <build>
|
60 | 114 | <plugins>
|
61 | 115 |
|
|
0 commit comments