This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
145 lines (145 loc) · 5.92 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?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>nl.b3p</groupId>
<artifactId>commons-mail-b3p</artifactId>
<version>5.0.2-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceVersion>1.8</project.build.sourceVersion>
<project.build.targetVersion>1.8</project.build.targetVersion>
<maven.compiler.source>${project.build.sourceVersion}</maven.compiler.source>
<maven.compiler.target>${project.build.targetVersion}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<netbeans.hint.jdkPlatform>JDK_${project.build.targetVersion}</netbeans.hint.jdkPlatform>
<maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version>
</properties>
<organization>
<name>B3Partners B.V.</name>
<url>http://www.b3partners.nl/</url>
</organization>
<url>https://github.com/B3Partners/${project.artifactId}/</url>
<issueManagement>
<system>Github</system>
<url>https://github.com/B3Partners/${project.artifactId}/issues</url>
</issueManagement>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
<version>1.6.2</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
</dependencies>
<scm>
<connection>scm:git:[email protected]:B3Partners/commons-mail-b3p.git</connection>
<developerConnection>scm:git:[email protected]:B3Partners/commons-mail-b3p.git</developerConnection>
<url>https://github.com/B3Partners/commons-mail-b3p</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<repository>
<id>repo.b3p.nl</id>
<name>B3P releases Repository</name>
<url>https://repo.b3p.nl/nexus/repository/releases/</url>
</repository>
<snapshotRepository>
<id>repo.b3p.nl</id>
<name>B3P snapshot Repository</name>
<url>https://repo.b3p.nl/nexus/repository/snapshots/</url>
</snapshotRepository>
<site>
<id>gh-pages</id>
<name>github pages site</name>
<url>scm:git:ssh://[email protected]/b3partners/${project.artifactId}.git</url>
</site>
</distributionManagement>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<doclint>none</doclint>
</configuration>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.12.1</version>
<configuration>
<skipDeploy>true</skipDeploy>
<generateSitemap>true</generateSitemap>
<attach>false</attach>
<outputEncoding>${project.build.sourceEncoding}</outputEncoding>
<locales>nl</locales>
<relativizeDecorationLinks>false</relativizeDecorationLinks>
</configuration>
</plugin>
<plugin>
<artifactId>maven-scm-publish-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<content>${project.reporting.outputDirectory}</content>
<scmBranch>gh-pages</scmBranch>
</configuration>
<executions>
<execution>
<id>scm-publish</id>
<phase>site-deploy</phase>
<goals>
<goal>publish-scm</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>8.0.2</version>
<configuration>
<enableExperimental>true</enableExperimental>
<retirejs>
<filterNonVulnerable>false</filterNonVulnerable>
</retirejs>
<suppressionFile>${project.basedir}/.mvn/owasp-suppression.xml</suppressionFile>
<format>ALL</format>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.4.2</version>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<doclint>none</doclint>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>javadoc-no-fork</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>