root/BH13SPARQLBuilder/pom.xml @ 78

リビジョン 62, 1.9 KB (コミッタ: nori, 10 年 前)

update pom.xml to use org.json

  • 属性 svn:mime-type の設定値 text/plain
行番号 
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/xsd/maven-4.0.0.xsd">
2  <modelVersion>4.0.0</modelVersion>
3  <groupId>BH13SPARQLBuilder</groupId>
4  <artifactId>BH13SPARQLBuilder</artifactId>
5  <version>0.0.1-SNAPSHOT</version>
6  <build>
7    <sourceDirectory>src</sourceDirectory>
8    <plugins>
9      <plugin>
10        <artifactId>maven-compiler-plugin</artifactId>
11        <version>3.1</version>
12        <configuration>
13          <source>1.7</source>
14          <target>1.7</target>
15        </configuration>
16      </plugin>
17    </plugins>
18  </build>
19  <dependencies>
20        <dependency>
21                <groupId>org.apache.jena</groupId>
22                <artifactId>jena-arq</artifactId>
23                <version>2.11.0</version>
24        </dependency>
25        <dependency>
26                <groupId>org.apache.jena</groupId>
27                <artifactId>jena-core</artifactId>
28                <version>2.11.0</version>
29        </dependency>
30        <dependency>
31                <groupId>org.apache.jena</groupId>
32                <artifactId>jena</artifactId>
33                <version>2.11.0</version>
34                <type>pom</type>
35        </dependency>
36        <dependency>
37                <groupId>franz</groupId>
38                <artifactId>agraph</artifactId>
39                <scope>system</scope>
40                <systemPath>${basedir}/lib2/agraph-4.5.jar</systemPath>
41        </dependency>
42        <dependency>
43                <groupId>org.openrdf.sesame</groupId>
44                <artifactId>sesame</artifactId>
45                <version>2.7.8</version>
46                <type>pom</type>
47        </dependency>
48        <dependency>
49                <groupId>org.json</groupId>
50                <artifactId>json</artifactId>
51                <version>20140107</version>
52        </dependency>
53  </dependencies>
54  <dependencyManagement>
55        <dependencies>
56                <dependency>
57                        <groupId>franz</groupId>
58                        <artifactId>agraph</artifactId>
59                        <version>4.5</version>
60                </dependency>
61        </dependencies>
62  </dependencyManagement>
63</project>
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。