jeap-db-schema-publisher
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-db-schema-publisher</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <url>https://github.com/jeap-admin-ch/jeap-db-schema-publisher/tree/main</url> <scm> <url>https://github.com/jeap-admin-ch/jeap-db-schema-publisher.git</url> <connection>scm:git:git://github.com/jeap-admin-ch/jeap-db-schema-publisher.git</connection> <developerConnection>scm:git:ssh://github.com:jeap-admin-ch/jeap-db-schema-publisher.git</developerConnection> </scm> <developers> <developer> <name>BIT</name> <email>jeap-community@bit.admin.ch</email> <organization>Federal Office of Information Technology, Systems and Telecommunication FOITT</organization> <organizationUrl>https://www.bit.admin.ch/</organizationUrl> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <artifactId>jeap-db-schema-publisher</artifactId> <name>${project.groupId}:${project.artifactId}</name> <version>1.0.0</version> <packaging>pom</packaging> <parent> <artifactId>jeap-internal-spring-boot-parent</artifactId> <groupId>ch.admin.bit.jeap</groupId> <version>5.11.0</version> </parent> <modules> <module>jeap-db-schema-publisher-model-reader</module> <module>jeap-db-schema-publisher-starter</module> </modules> <properties> <maven.javadoc.skip>false</maven.javadoc.skip> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jeap-db-schema-publisher-archrepo-client</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jeap-db-schema-publisher-model-reader</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jeap-db-schema-publisher-starter</artifactId> <version>${project.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <doclint>none</doclint> </configuration> </plugin> <!-- Add license to jar manifest --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Bundle-License>https://www.apache.org/licenses/LICENSE-2.0</Bundle-License> </manifestEntries> </archive> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <!-- Check third-party license compliance --> <plugin> <groupId>org.honton.chas</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> <!-- Generate third-party license list and check for missing license information --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> </plugins> </build> </project>