1 Star 0 Fork 762

光头强~! / Mapper

forked from abel533 / Mapper 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 9.42 KB
一键复制 编辑 原始数据 按行查看 历史
<!--
~ The MIT License (MIT)
~
~ Copyright (c) 2018 abel533@gmail.com
~
~ Permission is hereby granted, free of charge, to any person obtaining a copy
~ of this software and associated documentation files (the "Software"), to deal
~ in the Software without restriction, including without limitation the rights
~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
~ copies of the Software, and to permit persons to whom the Software is
~ furnished to do so, subject to the following conditions:
~
~ The above copyright notice and this permission notice shall be included in
~ all copies or substantial portions of the Software.
~
~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
~ THE SOFTWARE.
-->
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>tk.mybatis</groupId>
<artifactId>mapper-parent</artifactId>
<version>1</version>
<packaging>pom</packaging>
<name>mapper-parent</name>
<description>Mybatis 通用 Mapper 父依赖</description>
<url>http://www.mybatis.tk</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
<url>https://github.com/abel533/mapper/blob/master/LICENSE</url>
</license>
</licenses>
<developers>
<developer>
<name>abel533</name>
<email>abel533@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git@github.com:abel533/mapper.git</connection>
<developerConnection>scm:git@github.com:abel533/mapper.git</developerConnection>
<url>git@github.com:abel533/mapper.git</url>
</scm>
<modules>
<module>all</module>
<module>base</module>
<module>core</module>
<module>extra</module>
<module>spring</module>
<!--为了可以在 jdk6,7上进行测试,这里排除 weekend-->
<!--<module>weekend</module>-->
<module>generator</module>
<module>spring-boot-starter</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk.version>1.6</jdk.version>
<jpa.version>1.0</jpa.version>
<slf4j.version>1.7.25</slf4j.version>
<!--test-->
<junit.version>4.12</junit.version>
<log4j.version>1.2.17</log4j.version>
<hsqldb.version>2.2.9</hsqldb.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>${jpa.version}</version>
</dependency>
<!--optional-->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>${mybatis.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<scope>provided</scope>
</dependency>
<!--test-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>${hsqldb.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!--test-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
</dependency>
</dependencies>
<build>
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
<testResource>
<directory>src/test/java</directory>
</testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
</configuration>
</plugin>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>mybatis-lastest</id>
<properties>
<mybatis.version>3.4.5</mybatis.version>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>mybatis-3.2.4</id>
<properties>
<mybatis.version>3.2.4</mybatis.version>
</properties>
</profile>
<profile>
<id>mybatis-3.2.8</id>
<properties>
<mybatis.version>3.2.8</mybatis.version>
</properties>
</profile>
<profile>
<id>mybatis-3.3.0</id>
<properties>
<mybatis.version>3.3.0</mybatis.version>
</properties>
</profile>
<profile>
<id>mybatis-3.4.0</id>
<properties>
<mybatis.version>3.4.0</mybatis.version>
</properties>
</profile>
<profile>
<id>release</id>
<modules>
<module>all</module>
<module>base</module>
<module>core</module>
<module>extra</module>
<module>spring</module>
<module>weekend</module>
<module>generator</module>
<module>spring-boot-starter</module>
</modules>
<build>
<plugins>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<!-- GPG mvn clean deploy -P release -Dgpg.passphrase=YourPassphase-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>oss</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>oss</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>
Java
1
https://gitee.com/liuhonger/Mapper.git
git@gitee.com:liuhonger/Mapper.git
liuhonger
Mapper
Mapper
master

搜索帮助