|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| -<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 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 5 | <modelVersion>4.0.0</modelVersion>
|
4 | 6 | <parent>
|
5 | 7 | <groupId>com.linkedpipes</groupId>
|
|
8 | 10 | <relativePath>../pom-backend/pom.xml</relativePath>
|
9 | 11 | </parent>
|
10 | 12 | <artifactId>executor-monitor</artifactId>
|
11 |
| - <version>0.0.0</version> |
12 |
| - <packaging>jar</packaging> |
13 | 13 | <name>LinkedPipes Executor Monitor</name>
|
| 14 | + <packaging>jar</packaging> |
14 | 15 |
|
15 | 16 | <dependencies>
|
16 | 17 | <!-- Java EE API used by RDF4J to hash blank nodes. -->
|
|
28 | 29 | <dependency>
|
29 | 30 | <groupId>com.linkedpipes</groupId>
|
30 | 31 | <artifactId>vocabulary</artifactId>
|
31 |
| - <version>${lp.version}</version> |
32 |
| - <scope>compile</scope> |
33 | 32 | </dependency>
|
34 | 33 | <dependency>
|
35 | 34 | <groupId>com.linkedpipes</groupId>
|
36 | 35 | <artifactId>library-rdf</artifactId>
|
37 |
| - <version>${lp.version}</version> |
38 |
| - <scope>compile</scope> |
39 | 36 | </dependency>
|
40 | 37 | <!-- FTP server -->
|
41 | 38 | <dependency>
|
|
53 | 50 | <dependency>
|
54 | 51 | <groupId>org.springframework</groupId>
|
55 | 52 | <artifactId>spring-context</artifactId>
|
56 |
| - <scope>compile</scope> |
57 | 53 | </dependency>
|
58 | 54 | <dependency>
|
59 | 55 | <groupId>org.springframework</groupId>
|
|
67 | 63 | <dependency>
|
68 | 64 | <groupId>ch.qos.logback</groupId>
|
69 | 65 | <artifactId>logback-classic</artifactId>
|
70 |
| - <scope>compile</scope> |
71 | 66 | </dependency>
|
72 | 67 | <dependency>
|
73 | 68 | <groupId>ch.qos.logback</groupId>
|
74 | 69 | <artifactId>logback-core</artifactId>
|
75 |
| - <scope>compile</scope> |
76 | 70 | </dependency>
|
77 | 71 | <dependency>
|
78 | 72 | <groupId>org.slf4j</groupId>
|
79 | 73 | <artifactId>log4j-over-slf4j</artifactId>
|
80 |
| - <scope>compile</scope> |
81 | 74 | </dependency>
|
82 | 75 | <!-- Jetty. -->
|
83 | 76 | <dependency>
|
|
109 | 102 | <dependency>
|
110 | 103 | <groupId>org.eclipse.rdf4j</groupId>
|
111 | 104 | <artifactId>rdf4j-model</artifactId>
|
112 |
| - <scope>compile</scope> |
113 | 105 | </dependency>
|
114 | 106 | <dependency>
|
115 | 107 | <groupId>org.eclipse.rdf4j</groupId>
|
116 | 108 | <artifactId>rdf4j-repository-api</artifactId>
|
117 |
| - <scope>compile</scope> |
118 | 109 | </dependency>
|
119 | 110 | <dependency>
|
120 | 111 | <groupId>org.eclipse.rdf4j</groupId>
|
121 | 112 | <artifactId>rdf4j-repository-sail</artifactId>
|
122 |
| - <scope>compile</scope> |
123 | 113 | </dependency>
|
124 | 114 | <dependency>
|
125 | 115 | <groupId>org.eclipse.rdf4j</groupId>
|
126 | 116 | <artifactId>rdf4j-repository-sparql</artifactId>
|
127 |
| - <scope>compile</scope> |
128 | 117 | </dependency>
|
129 | 118 | <dependency>
|
130 | 119 | <groupId>org.eclipse.rdf4j</groupId>
|
131 | 120 | <artifactId>rdf4j-sail-nativerdf</artifactId>
|
132 |
| - <scope>compile</scope> |
133 | 121 | </dependency>
|
134 | 122 | <dependency>
|
135 | 123 | <groupId>org.eclipse.rdf4j</groupId>
|
136 | 124 | <artifactId>rdf4j-sail-memory</artifactId>
|
137 |
| - <scope>compile</scope> |
138 | 125 | </dependency>
|
139 | 126 | <dependency>
|
140 | 127 | <groupId>org.eclipse.rdf4j</groupId>
|
141 | 128 | <artifactId>rdf4j-rio-jsonld</artifactId>
|
142 |
| - <scope>compile</scope> |
143 | 129 | </dependency>
|
144 | 130 | <!-- HTTP related, particularly: Multipart file upload. -->
|
145 | 131 | <dependency>
|
|
216 | 202 | <build>
|
217 | 203 | <plugins>
|
218 | 204 | <plugin>
|
| 205 | + <groupId>org.apache.maven.plugins</groupId> |
219 | 206 | <artifactId>maven-clean-plugin</artifactId>
|
220 |
| - <version>3.1.0</version> |
| 207 | + <version>3.2.0</version> |
221 | 208 | <configuration>
|
222 | 209 | <filesets>
|
223 | 210 | <fileset>
|
|
0 commit comments