plugin-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ligoj.api</groupId>
<artifactId>plugin-core</artifactId>
<version>4.2.2</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.ligoj.api</groupId> <artifactId>parent</artifactId> <version>4.2.2</version> <relativePath>../parent/pom.xml</relativePath> </parent> <artifactId>plugin-core</artifactId> <packaging>jar</packaging> <name>Ligoj - Plugin Core</name> <description>Plugin internal core components required to compile and test a plugin</description> <url>https://github.com/ligoj/ligoj-api/plugin-core</url> <dependencies> <dependency> <groupId>org.ligoj.api</groupId> <artifactId>plugin-api</artifactId> <version>4.2.2</version> </dependency> <dependency> <groupId>org.ligoj.api</groupId> <artifactId>plugin-api-test</artifactId> <version>4.2.2</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> <filtering>true</filtering> </testResource> </testResources> </build></project>