0 Star 0 Fork 70

zhouwudong/mybatisext

forked from bobo/mybatisext 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 5.20 KB
一键复制 编辑 原始数据 按行查看 历史
bobo 提交于 2016-08-24 14:25 . pom
<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.ext-ext</groupId>
<artifactId>mybatis-ext</artifactId>
<version>0.0.5-SNAPSHOT</version>
<properties>
<jdk.version>1.6</jdk.version>
<sourceEncoding>UTF-8</sourceEncoding>
<mybatis.version>3.2.8</mybatis.version>
<spring.version>4.1.7.RELEASE</spring.version>
<velocity.version>1.7</velocity.version>
<mybatis-spring.version>1.2.3</mybatis-spring.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<name>MyBatis-ext</name>
<description>MyBatis-ext is powered by MyBatis. </description>
<url>https://git.oschina.net/srb/mybatisext/</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>songrubo</name>
<email>songrubo2001@163.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@git.oschina.net:srb/mybatisext.git</connection>
<developerConnection>scm:git:git@git.oschina.net:srb/mybatisext.git</developerConnection>
<url>git@git.oschina.net:srb/mybatisext.git</url>
</scm>
<dependencies>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>${mybatis.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>${mybatis-spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>${spring.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>${velocity.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.0.14</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.3.2</version>
<scope>test</scope>
<classifier>jdk5</classifier>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.1.46</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<encoding>${sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>releases</id>
<name>Internal Releases</name>
<url>http://192.168.50.202/nexus/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>Nexus Snapshot Repository</name>
<url>http://192.168.50.202/nexus/content/repositories/snapshots</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
</distributionManagement>
<!-- <profiles> <profile> <id>release</id> <build> <plugins> Source <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin>
Javadoc <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution>
<phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> GPG <plugin> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution>
</executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>releases</id> <name>Internal Releases</name> <url>http://192.168.50.202/nexus/content/repositories/releases</url>
</repository> <snapshotRepository> <id>snapshots</id> <name>Nexus Snapshot Repository</name> <url>http://192.168.50.202/nexus/content/repositories/snapshots</url>
<uniqueVersion>false</uniqueVersion> </snapshotRepository> </distributionManagement> </profile> </profiles> -->
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhouwd/mybatisext.git
git@gitee.com:zhouwd/mybatisext.git
zhouwd
mybatisext
mybatisext
master

搜索帮助