懒羊羊
2023-08-30 bf6c368992d6901135dd07434854940288a4163c
提交 | 用户 | 时间
bf6c36 1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5   <modelVersion>4.0.0</modelVersion>
6
7   <groupId>org.example</groupId>
8   <artifactId>GUI</artifactId>
9   <version>1.0-SNAPSHOT</version>
10
11   <name>GUI</name>
12   <!-- FIXME change it to the project's website -->
13   <url>http://www.example.com</url>
14
15   <properties>
16     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17     <maven.compiler.source>1.7</maven.compiler.source>
18     <maven.compiler.target>1.7</maven.compiler.target>
19   </properties>
20
21   <dependencies>
22     <dependency>
23       <groupId>org.rxtx</groupId>
24       <artifactId>rxtx</artifactId>
25       <version>2.1.7</version>
26     </dependency>
27     <!-- https://mvnrepository.com/artifact/com.intellij/forms_rt -->
28     <dependency>
29       <groupId>com.intellij</groupId>
30       <artifactId>forms_rt</artifactId>
31       <version>7.0.3</version>
32     </dependency>
33     <!--utgard start-->
34     <dependency>
35       <groupId>org.openscada.external</groupId>
36       <artifactId>org.openscada.external.jcifs</artifactId>
37       <version>1.2.25</version>
38       <exclusions>
39         <exclusion>
40           <groupId>org.bouncycastle</groupId>
41           <artifactId>bcprov-jdk15on</artifactId>
42         </exclusion>
43       </exclusions>
44     </dependency>
45     <dependency>
46       <groupId>org.openscada.jinterop</groupId>
47       <artifactId>org.openscada.jinterop.core</artifactId>
48       <version>2.1.8</version>
49     </dependency>
50     <dependency>
51       <groupId>org.openscada.jinterop</groupId>
52       <artifactId>org.openscada.jinterop.deps</artifactId>
53       <version>1.5.0</version>
54       <exclusions>
55         <exclusion>
56           <groupId>org.bouncycastle</groupId>
57           <artifactId>bcprov-jdk15on</artifactId>
58         </exclusion>
59       </exclusions>
60     </dependency>
61     <dependency>
62       <groupId>org.openscada.utgard</groupId>
63       <artifactId>org.openscada.opc.dcom</artifactId>
64       <version>1.5.0</version>
65     </dependency>
66     <dependency>
67       <groupId>org.openscada.utgard</groupId>
68       <artifactId>org.openscada.opc.lib</artifactId>
69       <version>1.5.0</version>
70     </dependency>
71     <dependency>
72       <groupId>org.bouncycastle</groupId>
73       <artifactId>bcprov-jdk15on</artifactId>
74       <version>1.61</version>
75     </dependency>
76     <!--utgard end-->
77     <dependency>
78       <groupId>junit</groupId>
79       <artifactId>junit</artifactId>
80       <version>4.11</version>
81       <scope>test</scope>
82     </dependency>
83   </dependencies>
84
85
86
87   <build>
88     <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
89       <plugins>
90         <plugin>
91           <groupId>org.springframework.boot</groupId>
92           <artifactId>spring-boot-maven-plugin</artifactId>
93           <executions>
94             <execution>
95               <goals>
96                 <goal>repackage</goal>
97               </goals>
98             </execution>
99           </executions>
100         </plugin>
101         <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
102         <plugin>
103           <artifactId>maven-clean-plugin</artifactId>
104           <version>3.1.0</version>
105         </plugin>
106         <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
107         <plugin>
108           <artifactId>maven-resources-plugin</artifactId>
109           <version>3.0.2</version>
110         </plugin>
111         <plugin>
112           <artifactId>maven-compiler-plugin</artifactId>
113           <version>3.8.0</version>
114         </plugin>
115         <plugin>
116           <artifactId>maven-surefire-plugin</artifactId>
117           <version>2.22.1</version>
118         </plugin>
119         <plugin>
120           <artifactId>maven-jar-plugin</artifactId>
121           <version>3.0.2</version>
122         </plugin>
123         <plugin>
124           <artifactId>maven-install-plugin</artifactId>
125           <version>2.5.2</version>
126         </plugin>
127         <plugin>
128           <artifactId>maven-deploy-plugin</artifactId>
129           <version>2.8.2</version>
130         </plugin>
131         <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
132         <plugin>
133           <artifactId>maven-site-plugin</artifactId>
134           <version>3.7.1</version>
135         </plugin>
136         <plugin>
137           <artifactId>maven-project-info-reports-plugin</artifactId>
138           <version>3.0.0</version>
139         </plugin>
140       </plugins>
141     </pluginManagement>
142   </build>
143 </project>