drombler-commons-spring-boot
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.drombler.commons</groupId> <artifactId>drombler-commons-spring-boot</artifactId> <version>1.0</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> <parent> <groupId>org.drombler.commons</groupId> <artifactId>drombler-commons-parent</artifactId> <version>1.0</version> <relativePath>../../drombler-commons-parent/pom.xml</relativePath> </parent> <artifactId>drombler-commons-spring-boot</artifactId> <packaging>bundle</packaging> <name>Drombler Commons - Spring - Boot</name> <description>Drombler Commons - Spring - Boot Utility classes</description> <inceptionYear>2019</inceptionYear> <!-- required for Javadoc (apidocs) linking --> <url>https://www.drombler.org/drombler-commons/${project.version}/docs/site</url> <scm> <connection>${scm.connection}</connection> <developerConnection>${scm.developerConnection}</developerConnection> <url>${scm.url}</url> <tag>HEAD</tag> </scm> <distributionManagement> <site> <id>github</id> <url>${distributionManagement.parent.url}/${project.artifactId}/</url> </site> </distributionManagement> <properties> <scm.connection>${scm.parent.connection}</scm.connection> <scm.developerConnection>${scm.parent.developerConnection}</scm.developerConnection> <scm.url>${scm.parent.url}</scm.url> </properties> <!-- Not inherited!?? --> <prerequisites> <maven>${maven.version}</maven> </prerequisites> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>org.drombler.commons.spring.boot</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot</artifactId> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> </dependencies> </project>