-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
110 lines (89 loc) · 3.08 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
<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>com.pro-crafting</groupId>
<artifactId>pc-parent</artifactId>
<version>16</version>
</parent>
<groupId>com.pro-crafting.tools</groupId>
<artifactId>jasperreports-maven-plugin-parent</artifactId>
<packaging>pom</packaging>
<version>4.0.2-SNAPSHOT</version>
<name>jasperreports-plugin</name>
<description>A jasperreports compiler plugin for maven</description>
<url>https://github.com/pro-crafting/Jasper-report-maven-plugin</url>
<modules>
<module>jasperreports-plugin</module>
<module>jasperreports-maven-plugin</module>
</modules>
<scm>
<connection>scm:git:https://github.com/pro-crafting/Jasper-report-maven-plugin.git</connection>
<url>https://github.com/pro-crafting/Jasper-report-maven-plugin</url>
<developerConnection>scm:git:https://github.com/pro-crafting/Jasper-report-maven-plugin.git</developerConnection>
<tag>HEAD</tag>
</scm>
<properties>
<!-- Settings -->
<maven.compiler.release>8</maven.compiler.release>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Dependency Versions -->
<!-- Make sure that the following block of dependencies match the version used in jasper reports found at https://raw.githubusercontent.com/TIBCOSoftware/jasperreports/master/pom-parent.xml -->
<version.jasperreports>7.0.1</version.jasperreports>
<version.rhino>1.7.14</version.rhino>
<version.plexus-compiler-api>2.13.0</version.plexus-compiler-api>
<version.maven-plugin-annotations>3.5.2</version.maven-plugin-annotations>
<version.maven-plugin-api>3.5.2</version.maven-plugin-api>
<version.itf>0.13.1</version.itf>
<version.slf4j>1.7.36</version.slf4j>
<!-- Plugin Versions -->
<version.maven-plugin-plugin>3.5.2</version.maven-plugin-plugin>
</properties>
<prerequisites>
<maven>3.5.2</maven>
</prerequisites>
<developers>
<developer>
<id>alexnederlof</id>
<name>Alex Nederlof</name>
</developer>
<developer>
<id>ammachado</id>
<name>Adriano Machado</name>
</developer>
<developer>
<id>lucarota</id>
<name>Luca Rota</name>
</developer>
<developer>
<id>tan9</id>
<name>Pei-Tang Huang</name>
</developer>
<developer>
<id>brunoabdon</id>
<name>Bruno Abdon</name>
</developer>
<developer>
<id>bwiedmann</id>
<name>Benjamin Wiedmann</name>
</developer>
<developer>
<id>Postremus</id>
<name>Martin Panzer</name>
<timezone>+2</timezone>
</developer>
<developer>
<id>stouphix</id>
<name>مصطفى</name>
</developer>
</developers>
<repositories>
<repository>
<id>jaspersoft-third-party</id>
<url>https://jaspersoft.jfrog.io/jaspersoft/third-party-ce-artifacts/</url>
</repository>
</repositories>
</project>