1 Star 0 Fork 23

zmyer / cloudopt-next

forked from cloudopt / cloudopt-next 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 9.07 KB
一键复制 编辑 原始数据 按行查看 历史
T-baby 提交于 2018-05-22 22:35 . deps(pom.xml): Update vertx to the latest
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.cloudopt.next</groupId>
<artifactId>cloudopt-next</artifactId>
<version>1.0.0-SNAPSHOT</version>
<modules>
<module>cloudopt-next-logging</module>
<module>cloudopt-next-yaml</module>
<module>cloudopt-next-parent</module>
<module>cloudopt-next-utils</module>
<module>cloudopt-next-waf</module>
<module>cloudopt-next-encrypt</module>
<module>cloudopt-next-web</module>
<module>cloudopt-next-client</module>
<module>cloudopt-next-jooq</module>
<module>cloudopt-next-spring</module>
<module>cloudopt-next-redis</module>
<module>cloudopt-next-kafka</module>
<module>cloudopt-next-i18n</module>
</modules>
<packaging>pom</packaging>
<pluginRepositories>
<pluginRepository>
<id>jcenter</id>
<name>JCenter</name>
<url>https://jcenter.bintray.com/</url>
</pluginRepository>
</pluginRepositories>
<name>Cloudopt Next</name>
<description>Cloudopt Next is a Java framework for the next generation</description>
<url>https://next.cloudopt.net</url>
<organization>
<name>Cloudopt</name>
<url>https://www.cloudopt.net</url>
</organization>
<issueManagement>
<system>Github Issue</system>
<url>https://github.com/cloudoptlab/cloudopt-next/issues</url>
</issueManagement>
<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>Cloudopt</name>
<organization>Cloudopt</organization>
<organizationUrl>https://www.cloudopt.net</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git@github.com:cloudoptlab/cloudopt-next.git</connection>
<developerConnection>scm:git@github.com:cloudoptlab/cloudopt-next.git</developerConnection>
<url>git@github.com:cloudoptlab/cloudopt-next.git</url>
</scm>
<properties>
<java.version>1.8</java.version>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kotlin.version>1.2.30</kotlin.version>
<junit.version>4.12</junit.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<cloudopt.next.version>${version}</cloudopt.next.version>
<logback.version>1.2.3</logback.version>
<jansi.version>1.13</jansi.version>
<vertx.version>3.5.2.CR2</vertx.version>
<netty.version>4.1.25.Final</netty.version>
<fastjson.version>1.2.45</fastjson.version>
</properties>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit</artifactId>
<version>${kotlin.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.name}-v${project.version}</finalName>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<configuration>
<jvmTarget>${java.version}</jvmTarget>
<apiVersion>1.2</apiVersion>
<languageVersion>1.2</languageVersion>
<compilerPlugins>
<!-- Or "spring" for the Spring support -->
<plugin>all-open</plugin>
<plugin>no-arg</plugin>
<plugin>jpa</plugin>
<plugin>spring</plugin>
</compilerPlugins>
<pluginOptions>
<option>all-open:annotation=net.cloudopt</option>
<option>no-arg:annotation=net.cloudopt</option>
<option>no-arg:invokeInitializers=true</option>
</pluginOptions>
</configuration>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-allopen</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-noarg</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<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>
<build>
<plugins>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Gpg Signature -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Kotlin
1
https://gitee.com/zmyer/cloudopt-next.git
git@gitee.com:zmyer/cloudopt-next.git
zmyer
cloudopt-next
cloudopt-next
master

搜索帮助