-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
84 lines (68 loc) · 2.61 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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>de.powerstat.toolbaseline</groupId>
<artifactId>tbl-java-parent</artifactId>
<version>17.2.0</version>
</parent>
<groupId>de.powerstat.phplib</groupId>
<artifactId>templateengine</artifactId>
<version>2.2.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>PowerStatsTemplateEngine</name>
<description>Java port of phplib template engine. See https://sourceforge.net/projects/phplib/ or https://pear.php.net/package/HTML_Template_PHPLIB for more.</description>
<url>https://www.powerstat.de/TemplateEngine.html</url>
<properties>
<license.inceptionYear>2015</license.inceptionYear>
<sonarTypeServer>ossrh</sonarTypeServer>
<sonarTypeHost>oss.sonatype.org</sonarTypeHost>
</properties>
<distributionManagement>
<site>
<id>powerstat</id>
<url>sftp://${web.server}/TemplateEngine/</url>
</site>
</distributionManagement>
<scm>
<connection>scm:git:https://github.com/PowerStat/TemplateEngine.git</connection>
<developerConnection>scm:git:https://github.com/PowerStat/TemplateEngine.git</developerConnection>
<url>https://github.com/PowerStat/TemplateEngine</url>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<archive>
<manifestEntries>
<Version>${project.version}</Version>
<GIT>https://github.com/PowerStat/TemplateEngine.git</GIT>
<SCM-Revision>${buildNumber}</SCM-Revision>
</manifestEntries>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
<!-- <finalName>${project.artifactId}</finalName> -->
</configuration>
</plugin>
<plugin> <!-- Not working: https://issues.apache.org/jira/browse/MJDEPS-25 -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jdeps-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<module>de.powerstat.phplib.templateengine</module>
<multiRelease>${javaRelease}</multiRelease>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
</plugins>
</reporting>
<dependencies>
</dependencies>
</project>