io.sarl.maven.sre
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.sarl.maven</groupId> <artifactId>io.sarl.maven.sre</artifactId> <version>0.10.1</version> </dependency>
<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>io.sarl.maven</groupId> <artifactId>io.sarl.maven.external</artifactId> <version>0.10.1</version> </parent> <artifactId>io.sarl.maven.sre</artifactId> <name>SRE Generator</name> <description>Maven plugin for creating SARL run-time environments</description> <packaging>maven-plugin</packaging> <!-- The dependencies contains the ones required for compiling and running this plugin, AND the plugins that are required for running the SARL compiler. --> <dependencies> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.sarl.lang</groupId> <artifactId>io.sarl.lang.core</artifactId> </dependency> <dependency> <groupId>io.sarl</groupId> <artifactId>io.sarl.eclipse</artifactId> </dependency> <dependency> <groupId>org.arakhne.afc.core</groupId> <artifactId>vmutils</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <!-- The following dependency is included in order to be sure that correct version is used due to a conflict between the base libs for SARL and maven-core --> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <configuration> <!-- No dependency is scanned for extracting mojo --> <mojoDependencies/> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <sourceDirectories> <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory> </sourceDirectories> </configuration> </plugin> </plugins> </build> <!-- ======================================= --> <!-- ==== Release Management === --> <!-- ======================================= --> <profiles> <profile> <id>maven-release-of-maven-sre-plugin</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <pluginManagement> <plugins> <plugin> <groupId>org.arakhne.afc.maven</groupId> <artifactId>tag-replacer</artifactId> <configuration> <sources> <source>${project.basedir}/src/main/java</source> </sources> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <sourcepath>${project.build.directory}/generated-sources/java</sourcepath> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> </profiles> </project>