jexten
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.myjtools.jexten</groupId>
<artifactId>jexten</artifactId>
<version>1.0.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.myjtools</groupId>
<artifactId>myjtools-parent</artifactId>
<version>1.4.0</version>
</parent>
<artifactId>jexten</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<groupId>org.myjtools.jexten</groupId>
<name>JExten</name>
<description>Java Extensions</description>
<url>https://github.com/org-myjtools/jexten</url>
<distributionManagement>
<site>
<id>github</id>
<url>scm:git:https://github.com/org-myjtools/jexten.git</url>
</site>
</distributionManagement>
<modules>
<module>jexten-processor</module>
<module>jexten-core</module>
<module>jexten-plugin-manager</module>
<module>jexten-maven-plugin</module>
<module>jexten-maven-artifact-store</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>4.0.0-M16</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.9.0</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.14</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>