io.sarl.maven.bootiquebatchcompiler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.sarl.maven</groupId> <artifactId>io.sarl.maven.bootiquebatchcompiler</artifactId> <version>0.12.0</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.12.0</version> </parent> <artifactId>io.sarl.maven.bootiquebatchcompiler</artifactId> <packaging>jar</packaging> <name>Base for Bootique Batch Compilation</name> <description>The base library for the building bootique applications that are also based on the SARL batch compiler.</description> <dependencies> <dependency> <groupId>io.sarl.maven</groupId> <artifactId>io.sarl.maven.bootiqueapp</artifactId> </dependency> <dependency> <groupId>io.sarl.maven</groupId> <artifactId>io.sarl.maven.batchcompiler</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>${project.artifactId}</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> <!-- ======================================= --> <!-- ==== Release Management === --> <!-- ======================================= --> <profiles> <profile> <id>maven-release-of-maven-bootiquebatchcompiler</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> </profile> </profiles> </project>