|
@@ -0,0 +1,59 @@
|
|
|
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+ <groupId>com.xt.js.gkaq.common</groupId>
|
|
|
+ <artifactId>gkaq-common</artifactId>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+ <properties>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <!-- java 版本 -->
|
|
|
+ <jdk.version>1.7</jdk.version>
|
|
|
+ </properties>
|
|
|
+ <build>
|
|
|
+ <!-- 插件配置 -->
|
|
|
+ <pluginManagement>
|
|
|
+ <plugins>
|
|
|
+ <!-- compiler插件, 设定JDK版本 -->
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>3.0</version>
|
|
|
+ <configuration>
|
|
|
+ <source>${jdk.version}</source>
|
|
|
+ <target>${jdk.version}</target>
|
|
|
+ <showWarnings>true</showWarnings>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </pluginManagement>
|
|
|
+ </build>
|
|
|
+ <distributionManagement>
|
|
|
+ <repository>
|
|
|
+ <id>xt-repository</id>
|
|
|
+ <name>xt Repository</name>
|
|
|
+ <url>${deploy.url}</url>
|
|
|
+ </repository>
|
|
|
+ <snapshotRepository>
|
|
|
+ <id>xt-repository-snapshots</id>
|
|
|
+ <name>xt Repository Snapshots</name>
|
|
|
+ <url>${deploy.snapshots.url}</url>
|
|
|
+ </snapshotRepository>
|
|
|
+ </distributionManagement>
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.xt.js.gkaq</groupId>
|
|
|
+ <artifactId>gkaq-bom</artifactId>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-jdbc</artifactId>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+</project>
|