Skip to content

Commit df5edc4

Browse files
author
Greg Meyer
authored
Merge pull request #2 from DirectStandards/develop
Releasing 1.0.0
2 parents 00360d3 + fed5dd2 commit df5edc4

10 files changed

Lines changed: 2521 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@
2121

2222
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2323
hs_err_pid*
24+
/.project
25+
/.classpath
26+
/target/

pom.xml

Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
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 http://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.4.5</version>
9+
<relativePath/> <!-- lookup parent from repository -->
10+
</parent>
11+
<groupId>org.directtruststandards</groupId>
12+
<artifactId>timplus-tools</artifactId>
13+
<name>TIM+ tools</name>
14+
<version>1.0.0</version>
15+
<description>TIM+ tools such as a certificate generator.</description>
16+
<inceptionYear>2020</inceptionYear>
17+
18+
<properties>
19+
<java.version>1.8</java.version>
20+
</properties>
21+
<dependencies>
22+
<dependency>
23+
<groupId>org.springframework.boot</groupId>
24+
<artifactId>spring-boot-starter-logging</artifactId>
25+
</dependency>
26+
<dependency>
27+
<groupId>org.springframework.boot</groupId>
28+
<artifactId>spring-boot-starter</artifactId>
29+
</dependency>
30+
<dependency>
31+
<groupId>org.apache.commons</groupId>
32+
<artifactId>commons-lang3</artifactId>
33+
</dependency>
34+
<dependency>
35+
<groupId>commons-io</groupId>
36+
<artifactId>commons-io</artifactId>
37+
<version>2.7</version>
38+
</dependency>
39+
<dependency>
40+
<groupId>com.fasterxml.jackson.core</groupId>
41+
<artifactId>jackson-annotations</artifactId>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.bouncycastle</groupId>
45+
<artifactId>bcprov-jdk15on</artifactId>
46+
<version>1.60</version>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.bouncycastle</groupId>
50+
<artifactId>bcpkix-jdk15on</artifactId>
51+
<version>1.60</version>
52+
</dependency>
53+
<dependency>
54+
<groupId>junit</groupId>
55+
<artifactId>junit</artifactId>
56+
<scope>test</scope>
57+
</dependency>
58+
</dependencies>
59+
60+
<build>
61+
<plugins>
62+
<plugin>
63+
<groupId>org.springframework.boot</groupId>
64+
<artifactId>spring-boot-maven-plugin</artifactId>
65+
</plugin>
66+
<plugin>
67+
<groupId>org.apache.maven.plugins</groupId>
68+
<artifactId>maven-source-plugin</artifactId>
69+
<executions>
70+
<execution>
71+
<goals>
72+
<goal>jar</goal>
73+
</goals>
74+
</execution>
75+
</executions>
76+
</plugin>
77+
<plugin>
78+
<groupId>org.apache.maven.plugins</groupId>
79+
<artifactId>maven-javadoc-plugin</artifactId>
80+
<version>2.9.1</version>
81+
<configuration>
82+
<additionalparam>-Xdoclint:none</additionalparam>
83+
<charset>UTF-8</charset>
84+
<docencoding>UTF-8</docencoding>
85+
<docfilessubdirs>true</docfilessubdirs>
86+
<detectJavaApiLink>true</detectJavaApiLink>
87+
<detectLinks>true</detectLinks>
88+
<source>1.8</source>
89+
<show>public</show>
90+
</configuration>
91+
<executions>
92+
<execution>
93+
<phase>package</phase>
94+
<id>attach-javadocs</id>
95+
<goals>
96+
<goal>jar</goal>
97+
</goals>
98+
<configuration>
99+
<additionalparam>-Xdoclint:none</additionalparam>
100+
</configuration>
101+
</execution>
102+
</executions>
103+
</plugin>
104+
<!-- for releases only
105+
<plugin>
106+
<groupId>org.apache.maven.plugins</groupId>
107+
<artifactId>maven-gpg-plugin</artifactId>
108+
<executions>
109+
<execution>
110+
<id>sign-artifacts</id>
111+
<phase>package</phase>
112+
<goals>
113+
<goal>sign</goal>
114+
</goals>
115+
</execution>
116+
</executions>
117+
</plugin>
118+
-->
119+
</plugins>
120+
</build>
121+
<distributionManagement>
122+
<snapshotRepository>
123+
<id>sonatype-snapshot</id>
124+
<name>Sonatype OSS Maven SNAPSHOT Repository</name>
125+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
126+
<uniqueVersion>false</uniqueVersion>
127+
</snapshotRepository>
128+
<repository>
129+
<id>sonatype-release</id>
130+
<name>Sonatype OSS Maven Release Repositor</name>
131+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
132+
<uniqueVersion>false</uniqueVersion>
133+
</repository>
134+
</distributionManagement>
135+
</project>

0 commit comments

Comments
 (0)