-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpom.xml
189 lines (166 loc) · 5.7 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?xml version="1.0" encoding="UTF-8"?>
<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>br.ufrj.ppgi.greco.kettle</groupId>
<artifactId>etl4lod-parent</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
<name>ETL4LOD</name>
<description>Componentes do Kettle relacionados a Linked Data</description>
<url>https://github.com/rogersmendonca/etl4lod.git</url>
<developers>
<developer>
<id>rogers.mendonca</id>
<name>Rogers Reiche de Mendonca</name>
<email>rogers.rj@gmail.com</email>
<organization>UFRJ (PPGI/GRECO)</organization>
<organizationUrl>http://greco.ppgi.ufrj.br</organizationUrl>
</developer>
</developers>
<repositories>
<!-- *** Pentaho repository. *** -->
<!-- Rogers (04/2020): Repositorio obsoleto -->
<!-- <repository> -->
<!-- <id>pentaho-repo</id> -->
<!-- <url>http://repo.pentaho.org/artifactory/pentaho/ </url> -->
<!-- </repository> -->
<!-- *** Pentaho repository (third party). *** -->
<!-- Rogers (04/2020): Repositorio obsoleto -->
<!-- <repository> -->
<!-- <id>pentaho-third-party</id> -->
<!-- <url>http://repo.pentaho.org/artifactory/third-party/</url> -->
<!-- </repository> -->
<!-- *** Pentaho repository. *** -->
<!-- Rogers (04/2020): Nova URL -->
<repository>
<id>pentaho-repo</id>
<name>pentaho-repo</name>
<url>https://public.nexus.pentaho.org/content/groups/omni/</url>
</repository>
<!-- Run ${basedir}/libs/maven_install_libs.bat to install the local libraries
into maven local repository -->
<repository>
<id>local-repository</id>
<url>file://${basedir}/libs</url>
</repository>
<!-- Rogers (07/2014) -->
<!-- O componente Any23 foi incorporado ao repositorio Maven Central. -->
<!-- Por isso, os 2 repositorios do googlecope nao sao mais necessarios. -->
<!-- Specific repository for Any23 dependencies without a dedicated repository. -->
<!--
<repository>
<id>any23-repository-external</id>
<url>http://any23.googlecode.com/svn/repo-ext</url>
</repository>
-->
<!-- The Any23 modules repository. -->
<!--
<repository>
<id>any23-repository</id>
<url>http://any23.googlecode.com/svn/repo</url>
</repository>
-->
</repositories>
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<pdi.version>4.3.0-stable</pdi.version>
<pdi.home>D:/programas/pdi-ce-4.3.0-stable</pdi.home>
<pdi.plugin.dir>plugins/steps/${project.name}</pdi.plugin.dir>
<pdi.plugin.lib_name>${project.artifactId}</pdi.plugin.lib_name>
</properties>
<modules>
<module>Annotator</module>
<module>DataPropertyMapping</module>
<module>ntriplegenerator</module>
<module>ObjectPropertyMapping</module>
<module>SparqlEndpoint</module>
<module>SparqlRunQuery</module>
<module>SparqlUpdateOutput</module>
</modules>
<build>
<plugins>
<!-- mvn eclipse:eclipse -DdownloadSources=true -DdownloadJavadocs -->
<!-- http://maven.apache.org/plugins/maven-eclipse-plugin/examples/attach-library-sources.html -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Kettle dependencies (start) -->
<dependency>
<groupId>pentaho-kettle</groupId>
<artifactId>kettle-core</artifactId>
<version>${pdi.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>pentaho-kettle</groupId>
<artifactId>kettle-db</artifactId>
<version>4.4.3.3</version>
</dependency>
<dependency>
<groupId>pentaho-kettle</groupId>
<artifactId>kettle-dbdialog</artifactId>
<version>${pdi.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>pentaho-kettle</groupId>
<artifactId>kettle-engine</artifactId>
<version>${pdi.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>pentaho-kettle</groupId>
<artifactId>kettle-test</artifactId>
<version>4.4.3.3</version>
</dependency>
<dependency>
<groupId>pentaho-kettle</groupId>
<artifactId>kettle-ui-swt</artifactId>
<version>${pdi.version}</version>
<scope>provided</scope>
</dependency>
<!-- Kettle dependencies (end) -->
<!-- Non-Kettle dependencies (start) -->
<dependency>
<groupId>bsh</groupId>
<artifactId>bsh</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>de.fuberlin.wiwiss.silk</groupId>
<artifactId>silk-core</artifactId>
<version>2.5</version>
</dependency>
<!-- Non-Kettle dependencies (end) -->
<!-- local dependencies -->
<!-- Obs: To install local dependencies, run maven_install_local_libs.bat -->
<dependency>
<groupId>br.ufrj.ppgi.greco.kettle</groupId>
<artifactId>KettlePluginTools</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</project>