sprite-framework-orm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>cn.zidot</groupId>
<artifactId>sprite-framework-orm</artifactId>
<version>1.1.7</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>cn.zidot</groupId>
<artifactId>sprite-parent</artifactId>
<version>1.0.3</version>
<relativePath/>
</parent>
<groupId>cn.zidot</groupId>
<artifactId>sprite-framework-orm</artifactId>
<version>1.1.7</version>
<name>sprite-framework-orm</name>
<description>sprite framework orm</description>
<url>https://gitee.com/jackl-osc/sprite-framework.git</url>
<developers>
<developer>
<name>Lu Mengwei</name>
<email>jackl_mail@sina.com</email>
</developer>
</developers>
<scm>
<tag>master</tag>
<connection>https://gitee.com/jackl-osc/sprite-framework.git</connection>
<developerConnection>https://gitee.com/jackl-osc</developerConnection>
<url>https://gitee.com/jackl-osc/sprite-framework.git</url>
</scm>
<licenses>
<license>
<name>Apache License Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<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>
<properties>
<org.aspectj-version>1.7.4</org.aspectj-version>
<org.springframework-version>4.3.7.RELEASE</org.springframework-version>
<org.slf4j-version>1.7.5</org.slf4j-version>
<jackson.version>2.5.3</jackson.version>
<commons-lang3.version>3.1</commons-lang3.version>
<commons-beanutils.version>1.8.3</commons-beanutils.version>
<sitemesh.version>3.0-alpha-2</sitemesh.version>
<ehcache.version>2.4.6</ehcache.version>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>${org.springframework-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>cn.zidot</groupId>
<artifactId>sprite-utils</artifactId>
</dependency>
<dependency>
<groupId>cn.zidot</groupId>
<artifactId>sprite-framework-core</artifactId>
<version>2.2.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/ognl/ognl -->
<dependency>
<groupId>ognl</groupId>
<artifactId>ognl</artifactId>
<version>3.2.10</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${org.springframework-version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>utf-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<encoding>UTF-8</encoding>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>aggregate-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>