<?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"> <parent> <artifactId>mesnac</artifactId> <groupId>com.foreverwin.mesnac</groupId> <version>1.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>console</artifactId> <packaging>war</packaging> <name>console</name> <url>http://www.example.com</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <dependencies> <!--业务模块--> <dependency> <groupId>com.foreverwin.mesnac</groupId> <artifactId>common</artifactId> </dependency> <dependency> <groupId>com.foreverwin.mesnac</groupId> <artifactId>equip</artifactId> </dependency> <dependency> <groupId>com.foreverwin.mesnac</groupId> <artifactId>meapi</artifactId> </dependency> <dependency> <groupId>com.foreverwin.mesnac</groupId> <artifactId>dataimport</artifactId> </dependency> <dependency> <groupId>com.foreverwin.mesnac</groupId> <artifactId>dispatch</artifactId> </dependency> <dependency> <groupId>com.foreverwin.mesnac</groupId> <artifactId>quality</artifactId> </dependency> <dependency> <groupId>com.foreverwin.mesnac</groupId> <artifactId>production</artifactId> </dependency> <dependency> <groupId>com.foreverwin.mesnac</groupId> <artifactId>anomaly</artifactId> </dependency> <dependency> <groupId>com.foreverwin.mesnac</groupId> <artifactId>listener</artifactId> </dependency> <dependency> <groupId>com.foreverwin.mesnac</groupId> <artifactId>quartz</artifactId> </dependency> <dependency> <groupId>com.foreverwin.mesnac</groupId> <artifactId>integration</artifactId> </dependency> <dependency> <groupId>com.foreverwin.modular</groupId> <artifactId>modular-core</artifactId> </dependency> <!--sap mes api lib--> <dependency> <groupId>com.foreverwin.modular</groupId> <artifactId>modular-melib</artifactId> </dependency> </dependencies> <build> <finalName>console</finalName> <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> </plugin> <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging --> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.0.2</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.1</version> </plugin> <plugin> <artifactId>maven-war-plugin</artifactId> <version>3.2.2</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> </plugins> </pluginManagement> </build> </project>