|
9 | 9 | <packaging>jar</packaging>
|
10 | 10 |
|
11 | 11 | <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> |
12 | 14 |
|
| 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> |
13 | 34 |
|
14 | 35 | <licenses>
|
15 | 36 | <license>
|
16 | 37 | <name>GNU Lesser General Public License version 3</name>
|
17 | 38 | <url>https://www.gnu.org/licenses/lgpl-3.0.en.html</url>
|
| 39 | + <distribution>repo</distribution> |
18 | 40 | </license>
|
19 | 41 | </licenses>
|
20 | 42 |
|
|
24 | 46 |
|
25 | 47 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
26 | 48 | <license.licenseName>lgpl_v3</license.licenseName>
|
| 49 | + |
27 | 50 | <maven.compiler.source>${javaVersion}</maven.compiler.source>
|
28 | 51 | <maven.compiler.target>${javaVersion}</maven.compiler.target>
|
29 | 52 | </properties>
|
30 | 53 |
|
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> |
36 | 88 |
|
37 | 89 | <dependencies>
|
38 | 90 | <dependency>
|
|
0 commit comments