Skip to content

Commit 84d58a2

Browse files
author
tangxiangan
committed
init
1 parent 132246c commit 84d58a2

36 files changed

+2181
-0
lines changed

pom.xml

Lines changed: 172 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,172 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>org.springframework.boot</groupId>
7+
<artifactId>spring-boot-starter-parent</artifactId>
8+
<version>2.3.0.RELEASE</version>
9+
<relativePath/> <!-- lookup parent from repository -->
10+
</parent>
11+
12+
<properties>
13+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
15+
<java.version>1.8</java.version>
16+
</properties>
17+
<dependencies>
18+
<dependency>
19+
<groupId>org.springframework.boot</groupId>
20+
<artifactId>spring-boot-starter-web</artifactId>
21+
</dependency>
22+
<dependency>
23+
<groupId>org.projectlombok</groupId>
24+
<artifactId>lombok</artifactId>
25+
</dependency>
26+
<dependency>
27+
<groupId>com.alibaba</groupId>
28+
<artifactId>fastjson</artifactId>
29+
<version>1.2.83_noneautotype</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>org.slf4j</groupId>
33+
<artifactId>slf4j-api</artifactId>
34+
<version>1.7.32</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>ch.qos.logback</groupId>
38+
<artifactId>logback-classic</artifactId>
39+
<version>1.2.3</version>
40+
</dependency>
41+
</dependencies>
42+
43+
44+
<groupId>api-server.compdf.com</groupId>
45+
<artifactId>compdfkit-pdf-api-java</artifactId>
46+
<version>1.0.0-SNAPSHOT</version>
47+
48+
<name>compdfkit-pdf-api-java</name>
49+
<description>compdfkit-pdf-api-java</description>
50+
<url>https://github.com/ComPDFKit/compdfkit-pdf-api-java</url>
51+
52+
<licenses>
53+
<license>
54+
<name>The Apache Software License, Version 2.0</name>
55+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
56+
</license>
57+
</licenses>
58+
59+
<developers>
60+
<developer>
61+
<id>tangxiangan</id>
62+
<name>tangxiangan</name>
63+
<email>tangxiangan@kdanmobile.com</email>
64+
<roles>
65+
<role>Project Developer</role>
66+
<role>Architect</role>
67+
</roles>
68+
<timezone>+8</timezone>
69+
</developer>
70+
</developers>
71+
72+
<scm>
73+
<connection>https://github.com/ComPDFKit/compdfkit-pdf-api-java.git</connection>
74+
<developerConnection>scm:git:ssh://git@github.com:ComPDFKit/compdfkit-pdf-api-java.git</developerConnection>
75+
<url>https://github.com/ComPDFKit/compdfkit-pdf-api-java</url>
76+
</scm>
77+
78+
79+
80+
81+
82+
83+
<profiles>
84+
<profile>
85+
<id>ossrh</id>
86+
<activation>
87+
<activeByDefault>true</activeByDefault>
88+
</activation>
89+
<build>
90+
<plugins>
91+
<plugin>
92+
<groupId>org.sonatype.plugins</groupId>
93+
<artifactId>nexus-staging-maven-plugin</artifactId>
94+
<version>1.6.7</version>
95+
<extensions>true</extensions>
96+
<configuration>
97+
<serverId>ossrh</serverId>
98+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
99+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
100+
</configuration>
101+
</plugin>
102+
103+
<plugin>
104+
<groupId>org.apache.maven.plugins</groupId>
105+
<artifactId>maven-source-plugin</artifactId>
106+
<version>2.2.1</version>
107+
<executions>
108+
<execution>
109+
<id>attach-sources</id>
110+
<goals>
111+
<goal>jar-no-fork</goal>
112+
</goals>
113+
</execution>
114+
</executions>
115+
</plugin>
116+
117+
<!-- Javadoc -->
118+
<plugin>
119+
<groupId>org.apache.maven.plugins</groupId>
120+
<artifactId>maven-javadoc-plugin</artifactId>
121+
<version>3.0.1</version>
122+
<configuration>
123+
</configuration>
124+
<executions>
125+
<execution>
126+
<phase>package</phase>
127+
<goals>
128+
<goal>jar</goal>
129+
</goals>
130+
</execution>
131+
</executions>
132+
</plugin>
133+
134+
135+
<!--gpg插件-->
136+
<plugin>
137+
<groupId>org.apache.maven.plugins</groupId>
138+
<artifactId>maven-gpg-plugin</artifactId>
139+
<version>1.5</version>
140+
<executions>
141+
<execution>
142+
<id>sign-artifacts</id>
143+
<phase>verify</phase>
144+
<goals>
145+
<goal>sign</goal>
146+
</goals>
147+
</execution>
148+
</executions>
149+
</plugin>
150+
151+
</plugins>
152+
</build>
153+
154+
<distributionManagement>
155+
<snapshotRepository>
156+
<!--注意,此id必须与setting.xml中指定的一致-->
157+
<id>ossrh</id>
158+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
159+
</snapshotRepository>
160+
<repository>
161+
<id>ossrh</id>
162+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
163+
</repository>
164+
</distributionManagement>
165+
</profile>
166+
167+
</profiles>
168+
<build>
169+
<finalName>compdfkit-pdf-api-java</finalName>
170+
</build>
171+
172+
</project>

0 commit comments

Comments
 (0)