pom.xml (5753B) - raw
1 <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"> 2 <modelVersion>4.0.0</modelVersion> 3 4 <groupId>au.id.djc</groupId> 5 <artifactId>jena-spring</artifactId> 6 <packaging>jar</packaging> 7 <version>1.3-SNAPSHOT</version> 8 <name>Jena Spring integration</name> 9 <url>http://code.djc.id.au/</url> 10 11 <distributionManagement> 12 <repository> 13 <id>code.djc.id.au</id> 14 <name>code.djc.id.au Maven repository</name> 15 <url>dav:http://code.djc.id.au/maven2/</url> 16 </repository> 17 </distributionManagement> 18 19 <scm> 20 <url>https://github.com/danc86/jena-spring</url> 21 <connection>scm:git:git://github.com/danc86/jena-spring.git</connection> 22 <developerConnection>scm:git:file://${project.basedir}</developerConnection> 23 </scm> 24 25 <properties> 26 <spring.version>3.1.1.RELEASE</spring.version> 27 </properties> 28 29 <build> 30 <extensions> 31 <extension> 32 <groupId>org.apache.maven.wagon</groupId> 33 <artifactId>wagon-webdav-jackrabbit</artifactId> 34 <version>2.2</version> 35 </extension> 36 </extensions> 37 <pluginManagement> 38 <plugins> 39 <plugin> 40 <groupId>org.apache.maven.plugins</groupId> 41 <artifactId>maven-compiler-plugin</artifactId> 42 <configuration> 43 <source>1.6</source> 44 <target>1.6</target> 45 <showDeprecation>true</showDeprecation> 46 <showWarnings>true</showWarnings> 47 <encoding>UTF-8</encoding> 48 </configuration> 49 </plugin> 50 <plugin> 51 <groupId>org.apache.maven.plugins</groupId> 52 <artifactId>maven-resources-plugin</artifactId> 53 <configuration> 54 <encoding>UTF-8</encoding> 55 </configuration> 56 </plugin> 57 <plugin> 58 <groupId>org.apache.maven.plugins</groupId> 59 <artifactId>maven-source-plugin</artifactId> 60 <executions> 61 <execution> 62 <id>attach-sources</id> 63 <goals> 64 <goal>jar</goal> 65 </goals> 66 </execution> 67 </executions> 68 </plugin> 69 </plugins> 70 </pluginManagement> 71 </build> 72 73 <dependencies> 74 <dependency> 75 <groupId>au.id.djc.jena</groupId> 76 <artifactId>jena-core</artifactId> 77 <version>2.7.0.1</version> 78 <exclusions> 79 <exclusion> 80 <groupId>org.slf4j</groupId> 81 <artifactId>slf4j-log4j12</artifactId> 82 </exclusion> 83 <exclusion> 84 <groupId>log4j</groupId> 85 <artifactId>log4j</artifactId> 86 </exclusion> 87 </exclusions> 88 </dependency> 89 <dependency> 90 <groupId>com.hp.hpl.jena</groupId> 91 <artifactId>sdb</artifactId> 92 <version>1.3.4</version> 93 <optional>true</optional> 94 <exclusions> 95 <exclusion> 96 <groupId>com.hp.hpl.jena</groupId> 97 <artifactId>jena</artifactId> 98 </exclusion> 99 <exclusion> 100 <groupId>com.hp.hpl.jena</groupId> 101 <artifactId>arq</artifactId> 102 </exclusion> 103 <exclusion> 104 <groupId>org.slf4j</groupId> 105 <artifactId>slf4j-log4j12</artifactId> 106 </exclusion> 107 <exclusion> 108 <groupId>log4j</groupId> 109 <artifactId>log4j</artifactId> 110 </exclusion> 111 </exclusions> 112 </dependency> 113 <dependency> 114 <groupId>org.springframework</groupId> 115 <artifactId>spring-core</artifactId> 116 <version>${spring.version}</version> 117 </dependency> 118 <dependency> 119 <groupId>org.springframework</groupId> 120 <artifactId>spring-beans</artifactId> 121 <version>${spring.version}</version> 122 </dependency> 123 <dependency> 124 <groupId>org.springframework</groupId> 125 <artifactId>spring-context</artifactId> 126 <version>${spring.version}</version> 127 </dependency> 128 <dependency> 129 <groupId>org.slf4j</groupId> 130 <artifactId>slf4j-jdk14</artifactId> 131 <version>1.6.1</version> 132 <scope>runtime</scope> 133 </dependency> 134 </dependencies> 135 136 <dependencyManagement> 137 <dependencies> 138 <dependency> 139 <groupId>com.hp.hpl.jena</groupId> 140 <artifactId>arq</artifactId> 141 <version>2.8.8</version> 142 <exclusions> 143 <exclusion> 144 <groupId>org.slf4j</groupId> 145 <artifactId>slf4j-log4j12</artifactId> 146 </exclusion> 147 <exclusion> 148 <groupId>log4j</groupId> 149 <artifactId>log4j</artifactId> 150 </exclusion> 151 </exclusions> 152 </dependency> 153 </dependencies> 154 </dependencyManagement> 155 156 </project>