gazelle
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.finefuture</groupId> <artifactId>gazelle</artifactId> <version>2.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>io.github.finefuture</groupId> <artifactId>gazelle</artifactId> <version>2.1</version> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/finefuture/gazelle</url> <connection>git@github.com:finefuture/gazelle.git</connection> </scm> <developers> <developer> <name>tom.long</name> <email>1120170646@qq.com</email> </developer> </developers> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>4.3.11.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>4.3.11.RELEASE</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> <version>5.0.12.Final</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>6.0</version> </dependency> </dependencies> <properties> <project.build.sourceencoding>UTF-8</project.build.sourceencoding> <project.reporting.outputencoding>UTF-8</project.reporting.outputencoding> <java.version>1.8</java.version> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <encoding>UTF-8</encoding> </properties> <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> <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> <!--<build>--> <!--<finalName>gazelle-1.0</finalName>--> <!--<plugins>--> <!--<plugin>--> <!--<groupId>org.apache.maven.plugins</groupId>--> <!--<artifactId>maven-compiler-plugin</artifactId>--> <!--<version>3.1</version>--> <!--<configuration>--> <!--<source>1.8</source>--> <!--<target>1.8</target>--> <!--<encoding>UTF-8</encoding>--> <!--</configuration>--> <!--</plugin>--> <!--<!–<plugin>–>--> <!--<!–<artifactId>maven-assembly-plugin</artifactId>–>--> <!--<!–<configuration>–>--> <!--<!–<descriptorRefs>–>--> <!--<!–<descriptorref>jar-with-dependencies</descriptorref>–>--> <!--<!–</descriptorRefs>–>--> <!--<!–<archive>–>--> <!--<!–<manifest>–>--> <!--<!–<mainclass></mainclass>–>--> <!--<!–</manifest>–>--> <!--<!–</archive>–>--> <!--<!–</configuration>–>--> <!--<!–<executions>–>--> <!--<!–<execution>–>--> <!--<!–<id>make-assembly</id>–>--> <!--<!–<phase>package</phase>–>--> <!--<!–<goals>–>--> <!--<!–<goal>single</goal>–>--> <!--<!–</goals>–>--> <!--<!–</execution>–>--> <!--<!–</executions>–>--> <!--<!–</plugin>–>--> <!--</plugins>--> <!--</build>--> </project>