-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
75 lines (69 loc) · 2.5 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
<?xml version="1.0" encoding="UTF-8"?><!--
/*********************************************************************
* Copyright (c) 2024 Contributors to the Eclipse Foundation.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
-->
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.daanse</groupId>
<artifactId>org.eclipse.daanse.pom.parent</artifactId>
<version>0.0.2</version>
</parent>
<artifactId>org.eclipse.daanse.rdb</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<properties>
<revision>0.0.1-SNAPSHOT</revision>
<scm.repo.detail>org.eclipse.daanse.rdb</scm.repo.detail>
<!-- <bnd.version>7.1.0-SNAPSHOT</bnd.version>-->
<gecko.emf.version>6.1.3</gecko.emf.version>
<gecko.emf.version>6.1.3</gecko.emf.version>
<emf.common.version>2.30.0</emf.common.version>
<emf.ecore.version>2.36.0</emf.ecore.version>
<emf.ecore.xmi.version>2.37.0</emf.ecore.xmi.version>
<slf4j.version>2.0.9</slf4j.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>structure.api</module>
<module>structure.pojo</module>
<module>structure.emf</module>
<module>structure.modifier.base</module>
<module>structure.modifier.pojo</module>
<module>structure.modifier.emf</module>
<module>dbcreator</module>
<module>structure.reader</module>
<module>structure.check</module>
<module>structure.documentation</module>
<module>org.eclipse.daanse.rdb.guard.api</module>
<module>org.eclipse.daanse.rdb.guard.jsqltranspiler</module>
</modules>
<repositories>
<repository>
<id>jsqltranspiler-snapshots</id>
<snapshots>
<enabled>true</enabled>
</snapshots>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
</project>