jeap-reaction-observer-service-instance
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-reaction-observer-service-instance</artifactId> <version>1.2.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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-reaction-observer-service</artifactId> <version>1.2.0</version> </parent> <artifactId>jeap-reaction-observer-service-instance</artifactId> <name>${project.groupId}:${project.artifactId}</name> <packaging>pom</packaging> <properties> <!-- prevent the license plugin from adding a THIRD-PARTY-LICENSES.md file to this pom packaged project --> <license.skipAggregateAddThirdParty>true</license.skipAggregateAddThirdParty> </properties> <dependencies> <dependency> <groupId>ch.admin.bit.jeap</groupId> <artifactId>jeap-reaction-observer-web</artifactId> </dependency> </dependencies> <build> <pluginManagement> <!-- While jEAP must produce a javadoc artifact for all modules due to Maven Central requirements, service instances will often not contain any code and javadoc generation would fail. Such failures are ignored here, and service instances can still decide to skip javadoc generation altogether using java.skip=true. --> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <failOnError>false</failOnError> <doclint>none</doclint> <quiet>true</quiet> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <!-- Disable all license plugin executions from the parent to avoid instances of the service inheriting these plugin executions. --> <plugin> <groupId>org.honton.chas</groupId> <artifactId>license-maven-plugin</artifactId> <executions> <execution> <id>default-cli</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <executions> <execution> <id>default-cli</id> <phase>none</phase> </execution> <execution> <id>add-third-party</id> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> </project>