Blame view

SOURCES/V2.7/pom.xml 5.22 KB
f89bc6da   Laurent BEIGBEDER   Sources V2.7
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<?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>
	<groupId>fr.tlse.irap.pt</groupId>
	<artifactId>pt</artifactId>
	<packaging>pom</packaging>
	<properties>
		<pt-version>2.7</pt-version>
		<pt-name>PropagationTool</pt-name>
		<pt-release-date>05/04/2023</pt-release-date>
		<client-org.springframework-version>3.1.0.RELEASE</client-org.springframework-version>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<!-- Java FX version -->
<!-- 		<javafx.version>8.0</javafx.version> -->
<!-- 		<javafx.jar>${jfxrt8.jar}</javafx.jar> -->
<!-- 		<ant-javafx.jar>${ant-javafx8.jar}</ant-javafx.jar> -->
		<javafx.version>2.2</javafx.version>
<!--		<javafx.jar>${jfxrt22.jar}</javafx.jar> -->
<!--		<ant-javafx.jar>${ant-javafx22.jar}</ant-javafx.jar> -->
		<javafx.jar>D:\lbeigbed\git\propagation-tool\sources\main\lib\deploy\javafx-2.2.jar</javafx.jar>
		<ant-javafx.jar>D:\lbeigbed\git\propagation-tool\sources\main\lib\deploy\ant-javafx-1.8.jar</ant-javafx.jar>
		<jdk-version>1.8</jdk-version>
		
		<tomcat-version>6.0.26</tomcat-version>
		<jar-plugin-version>2.4</jar-plugin-version>
	</properties>

	<version>2.3.0</version>

	<name>${pt-name}</name>
	<description>${pt-name} Multiproject</description>

	<modules>
		<module>calendar</module>
		<module>cdpp3dview</module>
		<module>common</module>
		<module>before-client</module>
		<module>client</module>
		<module>server</module>
		<!-- <module>integration</module> -->
		<module>amda</module>
    	<module>vespa</module>
    	<module>dpc</module>
	 <module>fxyz3d</module>
	</modules>

	<profiles>
		<!-- Dev environment -->
		<profile>
			<id>dev</id>
			<properties>
				<pt-warname>${pt-name}</pt-warname>
				<pt-appname>PropTool Dev</pt-appname>
				<!--<pt-url>http://82.66.146.5</pt-url>-->
                                <pt-url>http://192.168.1.12</pt-url>
                                <!--<pt-url>http://172.16.97.227</pt-url>-->
			</properties>
		</profile>
		<!-- Int (DMZ) environment -->
		<profile>
			<id>int</id>
			<properties>
				<pt-warname>${pt-name}</pt-warname>
				<pt-appname>PropTool DMZ Inetum</pt-appname>
				<!--<pt-url>http://172.19.195.163:8080</pt-url>-->
                                <pt-url>https://tma.cnes-science.inetum.services</pt-url>
			</properties>
		</profile>
		<!-- Val environment -->
		<profile>
			<id>val</id>
			<properties>
				<pt-warname>ESSAI</pt-warname>
				<pt-appname>PropTool ESSAI</pt-appname>
				<pt-url>http://storms-tools.irap.omp.eu</pt-url>
			</properties>
		</profile>
		<!-- Prod environment -->
		<profile>
			<id>pro</id>
			<properties>
				<pt-warname>${pt-name}</pt-warname>
				<pt-appname>Propagation Tool</pt-appname>
				<pt-url>http://storms-tools.irap.omp.eu</pt-url>
			</properties>
		</profile>
	</profiles>

	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-compiler-plugin</artifactId>
					<version>2.3.1</version>
					<configuration>
						<source>1.7</source>
						<target>1.7</target>
					</configuration>
				</plugin>
				<!-- Ignore/Execute plugin execution -->
				<plugin>
					<groupId>org.eclipse.m2e</groupId>
					<artifactId>lifecycle-mapping</artifactId>
					<version>1.0.0</version>
					<configuration>
						<lifecycleMappingMetadata>
							<pluginExecutions>
								<!-- copy-dependency plugin -->
								<pluginExecution>
									<pluginExecutionFilter>
										<groupId>org.apache.maven.plugins</groupId>
										<artifactId>maven-dependency-plugin</artifactId>
										<versionRange>[1.0.0,)</versionRange>
										<goals>
											<goal>copy-dependencies</goal>
										</goals>
									</pluginExecutionFilter>
									<action>
										<ignore/>
									</action>
								</pluginExecution>
							</pluginExecutions>
						</lifecycleMappingMetadata>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>

	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-checkstyle-plugin</artifactId>
				<version>2.10</version>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>findbugs-maven-plugin</artifactId>
				<version>2.3.3</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-pmd-plugin</artifactId>
				<version>3.0.1</version>
				<configuration>
					<linkXref>true</linkXref>
					<sourceEncoding>utf-8</sourceEncoding>
					<minimumTokens>100</minimumTokens>
					<targetJdk>1.7</targetJdk>
					<excludes>
						<exclude>**/*Bean.java</exclude>
						<exclude>**/generated/*.java</exclude>
					</excludes>
					<excludeRoots>
						<excludeRoot>target/generated-sources/stubs</excludeRoot>
					</excludeRoots>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jxr-plugin</artifactId>
				<version>2.3</version>
			</plugin>
			<plugin>
				<artifactId>maven-project-info-reports-plugin</artifactId>
				<version>2.7</version>
			</plugin>
		</plugins>
	</reporting>

</project>