-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
61 lines (54 loc) · 2.05 KB
/
pom.xml
File metadata and controls
61 lines (54 loc) · 2.05 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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.1.0 https://maven.apache.org/xsd/maven-4.1.0.xsd">
<modelVersion>4.1.0</modelVersion>
<parent>
<groupId>network.ike.platform</groupId>
<artifactId>ike-parent</artifactId>
<version>74</version>
<relativePath/>
</parent>
<groupId>network.ike.platform</groupId>
<artifactId>ike-commonmark-attributes</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>IKE commonmark-java attributes extension</name>
<description>
Pandoc-style {.class #id key=value} attribute syntax for commonmark-java,
aligned with AsciiDoc's [.role#id%opt] semantics. Lets the same role
vocabulary (.warning, .normative, .deprecated, .example, ...) and the
same stylesheet drive Markdown and AsciiDoc renderers in IKE.
</description>
<distributionManagement>
<repository>
<id>ike-releases</id>
<url>${deploy.release.url}</url>
</repository>
<snapshotRepository>
<id>ike-snapshots</id>
<url>${deploy.snapshot.url}</url>
</snapshotRepository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>dev.ikm.komet</groupId>
<artifactId>komet-bom</artifactId>
<version>3.0.7-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.commonmark</groupId>
<artifactId>commonmark</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>