|
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-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 | + |
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 | | - |
15 | | - <groupId>groupId</groupId> |
16 | | - <artifactId>Sybase</artifactId> |
17 | | - <version>1.0-SNAPSHOT</version> |
18 | | - |
19 | 41 | <properties> |
20 | 42 | <maven.compiler.source>1.8</maven.compiler.source> |
21 | 43 | <maven.compiler.target>1.8</maven.compiler.target> |
22 | 44 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
23 | 45 | <xdev.xapi.version>6.0.1</xdev.xapi.version> |
24 | | - <junit.version>4.13.2</junit.version> |
25 | 46 | <license.licenseName>lgpl_v3</license.licenseName> |
26 | 47 | </properties> |
27 | 48 |
|
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 | | - |
41 | 49 | <dependencies> |
42 | 50 | <dependency> |
43 | 51 | <groupId>com.xdev-software</groupId> |
44 | 52 | <artifactId>xapi</artifactId> |
45 | 53 | <version>${xdev.xapi.version}</version> |
46 | 54 | </dependency> |
47 | | - |
48 | | - <dependency> |
49 | | - <groupId>junit</groupId> |
50 | | - <artifactId>junit</artifactId> |
51 | | - <version>${junit.version}</version> |
52 | | - <scope>test</scope> |
53 | | - </dependency> |
54 | 55 | </dependencies> |
55 | 56 |
|
| 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 | + |
56 | 93 | <build> |
57 | 94 | <plugins> |
58 | 95 |
|
|
0 commit comments