Commit 456c1d54 by yinyong

新增启动类

parent 8b60a4c7
...@@ -40,49 +40,37 @@ ...@@ -40,49 +40,37 @@
</dependencies> </dependencies>
<build> <build>
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> <plugins>
<plugins> <plugin>
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> <groupId>org.apache.maven.plugins</groupId>
<plugin> <artifactId>maven-compiler-plugin</artifactId>
<artifactId>maven-clean-plugin</artifactId> </plugin>
<version>3.1.0</version>
</plugin> <plugin>
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> <artifactId>maven-assembly-plugin</artifactId>
<plugin> <version>3.1.0</version>
<artifactId>maven-resources-plugin</artifactId> <configuration>
<version>3.0.2</version> <archive>
</plugin> <manifest>
<plugin> <mainClass>com.bailuntec.Application</mainClass>
<artifactId>maven-compiler-plugin</artifactId> </manifest>
<version>3.8.0</version> </archive>
</plugin> <descriptorRefs>
<plugin> <descriptorRef>jar-with-dependencies</descriptorRef>
<artifactId>maven-surefire-plugin</artifactId> </descriptorRefs>
<version>2.22.1</version> <appendAssemblyId>false</appendAssemblyId>
</plugin> </configuration>
<plugin> <executions>
<artifactId>maven-jar-plugin</artifactId> <execution>
<version>3.0.2</version> <id>make-assembly</id>
</plugin> <phase>package</phase>
<plugin> <goals>
<artifactId>maven-install-plugin</artifactId> <goal>single</goal>
<version>2.5.2</version> </goals>
</plugin> </execution>
<plugin> </executions>
<artifactId>maven-deploy-plugin</artifactId> </plugin>
<version>2.8.2</version> </plugins>
</plugin>
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.7.1</version>
</plugin>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.0.0</version>
</plugin>
</plugins>
</pluginManagement>
<resources> <resources>
<resource> <resource>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment