konig.generator.dataCatalog.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of konig-maven-project-generator Show documentation
Show all versions of konig-maven-project-generator Show documentation
A library used to generate Maven projects from an RDF Model
The newest version!
<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"> <parent> <groupId>${project.groupId}</groupId> <artifactId>${project.parentId}</artifactId> <version>${project.version}</version> <relativePath>../${project.parentId}/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>${project.artifactId}</artifactId> <name>${project.name}</name> <properties> <maven.compiler.target>1.7</maven.compiler.target> <maven.compiler.source>1.7</maven.compiler.source> <konig.version>${project.konigVersion}</konig.version> </properties> <dependencies> </dependencies> <build> <plugins> <plugin> <groupId>io.konig</groupId> <artifactId>konig-data-catalog-maven-plugin</artifactId> <version>${konig.version}</version> <configuration> $dataCatalog </configuration> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>generate-site</goal> </goals> </execution> </executions> </plugin> #if($contentSystem) <plugin> <groupId>io.konig</groupId> <artifactId>konig-content-system-maven-plugin</artifactId> <version>${konig.version}</version> <configuration> $contentSystem </configuration> </plugin> #end <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.5.3</version> <configuration> <descriptor>src/assembly/dep.xml</descriptor> </configuration> <executions> <execution> <id>create-archive</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>default-jar</id> <phase>never</phase> <configuration> <finalName>unwanted</finalName> <classifier>unwanted</classifier> </configuration> </execution> </executions> </plugin> </plugins> </build> #if($contentSystem) <profiles> <profile> <id>my-test-plugins</id> <activation> <property> <name>publish.enabled</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>io.konig</groupId> <artifactId>konig-content-system-maven-plugin</artifactId> <version>${konig.version}</version> <configuration> $contentSystem </configuration> <executions> <execution> <phase>install</phase> <goals> <goal>publish</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> #end </project>
© 2015 - 2024 Weber Informatics LLC | Privacy Policy