forked from asciidoctor/asciidoctorj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall-asciidoctor-gem.pom
79 lines (79 loc) · 2.3 KB
/
install-asciidoctor-gem.pom
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
<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>rubygems</groupId>
<artifactId>asciidoctor</artifactId>
<version></version>
<name><![CDATA[A native Ruby AsciiDoc syntax processor and publishing toolchain]]></name>
<packaging>gem</packaging>
<description><![CDATA[An open source text processor and publishing toolchain written in Ruby for converting AsciiDoc markup into HTML 5, DocBook 4.5 and custom formats.
]]></description>
<url>http://asciidoctor.org</url>
<developers>
<developer>
<id>Jason_Porter</id>
<name>Jason Porter</name>
</developer>
<developer>
<id>Jeremy_McAnally</id>
<name>Jeremy McAnally</name>
</developer>
<developer>
<id>Nick_Hengeveld</id>
<name>Nick Hengeveld</name>
</developer>
<developer>
<id>dan_dot_j_dot_allen_at_gmail_dot_com</id>
<name>Dan Allen</name>
<email>[email protected]</email>
</developer>
<developer>
<id>rew_at_erebor_dot_com</id>
<name>Ryan Waldron</name>
<email>[email protected]</email>
</developer>
</developers>
<licenses>
<license>
<name>LICENSE</name>
<url>./LICENSE</url>
<distribution>repo</distribution>
</license>
<license>
<name>MIT</name>
<url>./MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<repositories>
<repository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>rubygems-releases</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</pluginRepository>
</pluginRepositories>
<properties>
<jruby.plugins.version>1.0.0-rc4</jruby.plugins.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<groupId>de.saumya.mojo</groupId>
<artifactId>gem-maven-plugin</artifactId>
<version>${jruby.plugins.version}</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>