28 Star 33 Fork 16

febit / webit-generator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 5.70 KB
一键复制 编辑 原始数据 按行查看 历史
febit 提交于 2017-07-31 00:22 . update
<?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>org.febit.generator</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>2.0.0-SNAPSHOT</version>
<name>febit-generator</name>
<description>A code generator, using febit-wit.</description>
<url>https://github.com/febit/febit-generator</url>
<modules>
<module>generator-core</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<wit.version>2.1.0-beta</wit.version>
<febit-common.version>2.6.0-SNAPSHOT</febit-common.version>
</properties>
<scm>
<url>https://github.com/febit/febit-generator</url>
<connection>scm:git:https://github.com/febit/febit-generator.git</connection>
<developerConnection>scm:git:https://github.com/febit/febit-generator.git</developerConnection>
</scm>
<organization>
<name>Febit</name>
<url>https://github.com/febit</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>zqq</id>
<name>Zhu Qingqing</name>
<email>zqq_90@163.com</email>
<timezone>+8</timezone>
</developer>
</developers>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/febit/febit-generator/issues</url>
</issueManagement>
<repositories>
<repository>
<id>central</id>
<url>http://repo1.maven.org/maven2/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.febit.wit</groupId>
<artifactId>wit-core</artifactId>
<version>${wit.version}</version>
</dependency>
<dependency>
<groupId>org.febit</groupId>
<artifactId>febit-common</artifactId>
<version>${febit-common.version}</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.10</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>all-modules</id>
<modules>
<module>distribution</module>
</modules>
</profile>
<profile>
<id>sonatype-release</id>
<distributionManagement>
<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>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</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>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>license-format</id>
<build>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<header>etc/licenseheader.txt</header>
<includes>
<include>**/*.java</include>
</includes>
<excludes>
<exclude>**/shaded/**</exclude>
</excludes>
</configuration>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Java
1
https://gitee.com/zqq90/webit-generator.git
git@gitee.com:zqq90/webit-generator.git
zqq90
webit-generator
webit-generator
master

搜索帮助