tis-ibatis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.qlangtech.tis</groupId>
<artifactId>tis-ibatis</artifactId>
<version>3.0</version>
</dependency><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>
<parent>
<groupId>com.qlangtech.tis</groupId>
<artifactId>tis-parent</artifactId>
<version>1.0.3</version>
</parent>
<artifactId>tis-ibatis</artifactId>
<version>3.0</version>
<packaging>jar</packaging>
<name>tis-ibatis</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring-version>3.0.6.RELEASE</spring-version>
<tisasm-maven-plugin.version>1.0.2</tisasm-maven-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.0</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>${spring-version}</version>
</dependency>
<dependency>
<groupId>org.apache.ibatis</groupId>
<artifactId>ibatis-sqlmap</artifactId>
<version>2.3.4.726</version>
</dependency>
</dependencies>
<build>
<finalName>${project.name}</finalName>
<plugins>
<plugin>
<groupId>com.qlangtech.tis</groupId>
<artifactId>tisasm-maven-plugin</artifactId>
<version>${tisasm-maven-plugin.version}</version>
<configuration>
<descriptor>./assembly.xml</descriptor>
<!--
<outputDirectory>./</outputDirectory>
-->
<appendAssemblyId>false</appendAssemblyId>
<tarLongFileMode>posix</tarLongFileMode>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>tisasm</goal>
</goals>
</execution>
<execution>
<id>make-deploy</id>
<phase>deploy</phase>
<goals>
<goal>put</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>