admin-starter-springboot-archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.adminfaces</groupId> <artifactId>admin-starter-springboot-archetype</artifactId> <version>1.0.1</version> </dependency>
<?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"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.adminfaces</groupId> <artifactId>admin-starter-springboot-archetype</artifactId> <version>1.0.1</version> <packaging>maven-archetype</packaging> <name>admin-starter-archetype-springboot</name> <description> Maven archetype for AdminFaces Starter SpringBoot application. </description> <url>https://github.com/adminfaces/admin-starter-sprinboot-archetype</url> <developers> <developer> <id>rmpestano</id> <name>Rafael Pestano</name> <email>rmpestano@gmail.com</email> <timezone>-3</timezone> </developer> </developers> <licenses> <license> <name>The MIT License (MIT)</name> <url>https://opensource.org/licenses/MIT</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/adminfaces/admin-starter-springboot-archetype.git</connection> <developerConnection>scm:git:git@github.com:adminfaces/admin-starter-springboot-archetype.git</developerConnection> <url>https://github.com/adminfaces/admin-starter-springboot-archetype.git</url> <tag>HEAD</tag> </scm> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>3.0.1</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>3.0.1</version> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>central</id> <url>https://oss.sonatype.org/content/repositories/releases</url> </repository> </distributionManagement> </project>