-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
81 lines (80 loc) · 2.96 KB
/
pom.xml
File metadata and controls
81 lines (80 loc) · 2.96 KB
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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.lumeer</groupId>
<artifactId>sample-data</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Lumeer Sample Data</name>
<organization>
<name>Lumeer Community</name>
<url>https://www.lumeer.io</url>
</organization>
<description>A Modern Data Management Platform</description>
<url>https://www.lumeer.io</url>
<inceptionYear>2016</inceptionYear>
<scm>
<url>https://github.com/Lumeer/engine</url>
<connection>scm:git:git://github.com/Lumeer/sample-data.git</connection>
<developerConnection>scm:git:git@github.com:Lumeer/sample-data.git</developerConnection>
<tag>v1.0</tag>
</scm>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.maven.exec>1.6.0</version.maven.exec>
<version.jboss-logging>3.1.0.CR1</version.jboss-logging>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.lumeer</groupId>
<artifactId>engine-bom</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
<version>${version.jboss-logging}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>io.lumeer</groupId>
<artifactId>engine-utils</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${version.maven.exec}</version>
<configuration>
<mainClass>io.lumeer.utils.RestImport</mainClass>
<commandlineArgs>-u http://127.0.0.1:8080/lumeer-engine/rest ./LMR/</commandlineArgs>
</configuration>
</plugin>
</plugins>
</build>
</project>