This repository has been archived by the owner on Jun 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
pom.xml
55 lines (46 loc) · 1.49 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
<?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">
<parent>
<groupId>io.vertx</groupId>
<artifactId>vertx-parent</artifactId>
<version>14</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>vertx-lang-ceylon-parent</artifactId>
<version>3.6.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<asciidoc.dir>${project.basedir}/src/main/asciidoc</asciidoc.dir>
<tools.jar>${java.home}/../lib/tools.jar</tools.jar>
<stack.version>3.6.0-SNAPSHOT</stack.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-dependencies</artifactId>
<version>${stack.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
</dependencies>
<modules>
<module>vertx-lang-ceylon-doc</module>
<module>vertx-lang-ceylon</module>
<module>vertx-lang-ceylon-stack</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.ceylon-lang</groupId>
<artifactId>ceylon-maven-plugin</artifactId>
<version>1.3.3</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>