Skip to content
Snippets Groups Projects
Commit 411fc793 authored by Sebastien's avatar Sebastien
Browse files

first maven dependency

parent cdd4d8b9
No related branches found
No related tags found
No related merge requests found
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Tue May 26 18:01:36 CEST 2020
rdf-unl-java-vocabulary-1.0-SNAPSHOT.jar>=
rdf-unl-java-vocabulary-1.0-SNAPSHOT.pom>=
<?xml version="1.0" encoding="UTF-8"?>
<metadata modelVersion="1.1.0">
<groupId>fr.tetras_libre.rdf</groupId>
<artifactId>rdf-unl-java-vocabulary</artifactId>
<version>1.0-SNAPSHOT</version>
<versioning>
<snapshot>
<localCopy>true</localCopy>
</snapshot>
<lastUpdated>20200526160136</lastUpdated>
<snapshotVersions>
<snapshotVersion>
<extension>jar</extension>
<value>1.0-SNAPSHOT</value>
<updated>20200526160136</updated>
</snapshotVersion>
<snapshotVersion>
<extension>pom</extension>
<value>1.0-SNAPSHOT</value>
<updated>20200526160136</updated>
</snapshotVersion>
</snapshotVersions>
</versioning>
</metadata>
<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>
<groupId>fr.tetras_libre.rdf</groupId>
<artifactId>rdf-unl-java-vocabulary</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<packaging>jar</packaging>
<name>rdf-unl-java-vocabulary</name>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
<configuration>
<target>
<exec
dir="${project.basedir}"
executable="${project.basedir}/src/tools/apache-jena-3.14.0/bin/schemagen"
failonerror="true"
>
<arg line="-i ${project.basedir}/../../schema.ttl -o ${project.basedir}/src/main/java --package fr.tetras_libre.rdf.vocabulary --ontology" />
</exec>
</target>
<!--checking if for windows and non windows OS-->
<target depends="ifOSWindows, ifOSNotWindows" name="checkOS"/>
<condition property="isOSUnix">
<os family="unix" />
</condition>
<condition property="isOSWindows">
<os family="windows" />
</condition>
<!-- if the OS is windows call the target run.script.windows -->
<target name="ifOSWindows" if="isOSWindows">
<echo>is windows........</echo>
<antcall target="runscript.windows"/>
</target>
<!-- if the OS is not windows call the target run.script.unix-->
<target name="ifOSNotWindows" if="isOSUnix">
<echo>is unix........</echo>
<antcall target="runscript.unix"/>
</target>
<target name="runscript.windows">
<echo>This is a Windows machine.</echo>
<exec
dir="${project.basedir}"
executable="${project.basedir}/src/tools/apache-jena-3.14.0/bat/schemagen.bat"
failonerror="true"
>
<arg line="-i ${project.basedir}/../schema.ttl -o ${project.basedir}/src/main/java --package fr.tetras_libre.rdf.vocabulary --ontology -n UNL" />
</exec>
</target>
<target name="runscript.unix">
<echo>This is an Unix machine.</echo>
<exec
dir="${project.basedir}"
executable="${project.basedir}/tools/apache-jena-3.14.0/bin/schemagen"
failonerror="true"
>
<arg line="-i ${project.basedir}/../schema.ttl -o ${project.basedir}/src/main/java --package fr.tetras_libre.rdf.vocabulary --ontology -n UNL" />
</exec>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>11</release>
</configuration>
<executions>
<execution>
<id>generateSources</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>apache-jena-libs</artifactId>
<type>pom</type>
<version>3.14.0</version>
</dependency>
</dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>fr.tetras_libre.rdf</groupId>
<artifactId>rdf-unl-java-vocabulary</artifactId>
<versioning>
<versions>
<version>1.0-SNAPSHOT</version>
</versions>
<lastUpdated>20200526160136</lastUpdated>
</versioning>
</metadata>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment