|
@@ -13,20 +13,35 @@
|
|
|
<artifactId>ssssssss-core</artifactId>
|
|
|
<version>0.0.1</version>
|
|
|
<packaging>jar</packaging>
|
|
|
- <name>ssssssss</name>
|
|
|
- <url>https://gitee.com/jmxd/ssssssss</url>
|
|
|
+ <name>ssssssss-core</name>
|
|
|
+ <description>auto generate http api based on xml</description>
|
|
|
+ <licenses>
|
|
|
+ <license>
|
|
|
+ <name>The MIT License (MIT)</name>
|
|
|
+ <url>https://github.com/javamxd/ssssssss/blob/master/LICENSE</url>
|
|
|
+ </license>
|
|
|
+ </licenses>
|
|
|
+ <developers>
|
|
|
+ <developer>
|
|
|
+ <name>jmxd</name>
|
|
|
+ <email>838425805@qq.com</email>
|
|
|
+ </developer>
|
|
|
+ </developers>
|
|
|
+ <scm>
|
|
|
+ <url>https://gitee.com/jmxd/ssssssss</url>
|
|
|
+ <connection>scm:git:https://gitee.com/jmxd/ssssssss.git</connection>
|
|
|
+ <developerConnection>scm:git:https://gitee.com/jmxd/ssssssss.git</developerConnection>
|
|
|
+ </scm>
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
</dependency>
|
|
|
-
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-text</artifactId>
|
|
|
<version>1.6</version>
|
|
|
</dependency>
|
|
|
-
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
@@ -37,5 +52,78 @@
|
|
|
<version>2.6</version>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
-
|
|
|
+ <profiles>
|
|
|
+ <profile>
|
|
|
+ <id>release</id>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <!--Compiler-->
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <source>1.8</source>
|
|
|
+ <target>1.8</target>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <!-- 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>
|
|
|
+ <!-- Java Doc -->
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-javadoc-plugin</artifactId>
|
|
|
+ <version>3.0.0</version>
|
|
|
+ <configuration>
|
|
|
+ <additionalOptions>
|
|
|
+ <additionalOption>-Xdoclint:none</additionalOption>
|
|
|
+ </additionalOptions>
|
|
|
+ </configuration>
|
|
|
+ <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>
|
|
|
</project>
|