archetype-resources.start.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of template-project-archetype
Show all versions of template-project-archetype
Template engineering of huifer.
The newest version!
<?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"> <artifactId>${artifactId}</artifactId> <build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <artifactId>spring-boot-maven-plugin</artifactId> <groupId>org.springframework.boot</groupId> <version>2.0.4.RELEASE</version> </plugin> </plugins> </build> <modelVersion>4.0.0</modelVersion> <packaging>pom</packaging> <parent> <artifactId>${rootArtifactId}</artifactId> <groupId>${groupId}</groupId> <version>${version}</version> </parent> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> </properties> </project>
© 2015 - 2024 Weber Informatics LLC | Privacy Policy