azeroth
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cn.com.warlock</groupId> <artifactId>azeroth</artifactId> <version>2</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> <groupId>cn.com.warlock</groupId> <artifactId>azeroth</artifactId> <version>2</version> <packaging>pom</packaging> <description>艾泽拉斯(Azeroth),它是泰坦赐予无边黑暗中一个渺小位面的名字,这个世界上曾经唯一的大陆被泰坦命名为卡利姆多——“永烁星光之地”。战斗吧,英雄!</description> <name>azeroth</name> <url>http://warlock.com.cn</url> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>warlock</name> <email>bobo.oneself@gmail.com</email> <organization>warlock-china</organization> <organizationUrl>https://github.com/warlock-china</organizationUrl> </developer> </developers> <scm> <connection> scm:git:https://github.com/warlock-china/azeroth.git </connection> <developerConnection> scm:git:https://github.com/warlock-china/azeroth.git </developerConnection> <url>https://github.com/warlock-china/azeroth</url> <tag>v1.0</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <compiler.jdk.version>1.8</compiler.jdk.version> <output.encoding>utf-8</output.encoding> <spring.version>4.2.5.RELEASE</spring.version> <kafka.version>0.10.0.1</kafka.version> <zkclient.version>0.7</zkclient.version> <zookeeper.version>3.4.6</zookeeper.version> <jedis.version>2.8.0</jedis.version> <mybatis.version>3.3.0</mybatis.version> <mapper.version>3.3.4</mapper.version> <druid.version>1.0.16</druid.version> <junit.version>4.12</junit.version> </properties> <modules> <module>azeroth-common</module> <module>azeroth-kafka</module> <module>azeroth-spring</module> <module>azeroth-cache</module> <module>azeroth-scheduler</module> <module>azeroth-mybatis</module> <module>azeroth-rest</module> <module>azeroth-confcenter</module> <module>azeroth-common2</module> <module>azeroth-log</module> <module>azeroth-filesystem</module> </modules> <dependencies> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.21</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>sonatype-oss-release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${compiler.jdk.version}</source> <target>${compiler.jdk.version}</target> <encoding>${output.encoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>false</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> </plugin> <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> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.1</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <useReleaseProfile>false</useReleaseProfile> <arguments>-Psonatype-oss-release</arguments> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${compiler.jdk.version}</source> <target>${compiler.jdk.version}</target> <encoding>${output.encoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>false</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.18.1</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <!-- mvn clean deploy -P sonatype-oss-release -DskipTests=true -Dgpg.passphrase=密码 --> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>