blob: d357c09cde1e4785e6a53409eeec30d0138b16ef [file] [log] [blame]
Jeffrey van Gogh32d3c0c2016-04-04 10:49:31 -07001<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">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.sonatype.oss</groupId>
5 <artifactId>oss-parent</artifactId>
6 <version>9</version>
7 </parent>
8
9 <groupId>kr.motd.maven</groupId>
10 <artifactId>os-maven-plugin</artifactId>
11 <version>1.2.3.Final</version>
12 <packaging>maven-plugin</packaging>
13
14 <name>os-maven-plugin</name>
15 <url>https://github.com/trustin/os-maven-plugin/</url>
16 <description>
17 A Maven extension/plugin that generates various useful platform-dependent project properties normalized from
18 ${os.name} and ${os.arch}.
19 </description>
20
21 <organization>
22 <name>Trustin Lee</name>
23 <url>http://t.motd.kr/</url>
24 </organization>
25
26 <licenses>
27 <license>
28 <name>Apache License, Version 2.0</name>
29 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
30 </license>
31 </licenses>
32 <inceptionYear>2014</inceptionYear>
33
34 <scm>
35 <url>https://github.com/trustin/os-maven-plugin</url>
36 <connection>scm:git:git://github.com/trustin/os-maven-plugin.git</connection>
37 <developerConnection>scm:git:ssh://git@github.com/trustin/os-maven-plugin.git</developerConnection>
38 <tag>HEAD</tag>
39 </scm>
40
41 <developers>
42 <developer>
43 <id>trustin</id>
44 <name>Trustin Lee</name>
45 <email>t@motd.kr</email>
46 <url>http://t.motd.kr/</url>
47 <organization>Trustin Lee</organization>
48 <organizationUrl>http://t.motd.kr/</organizationUrl>
49 </developer>
50 </developers>
51
52 <properties>
53 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
54 </properties>
55
56 <dependencies>
57 <dependency>
58 <groupId>org.apache.maven</groupId>
59 <artifactId>maven-plugin-api</artifactId>
60 <version>3.2.1</version>
61 </dependency>
62 <dependency>
63 <groupId>org.apache.maven</groupId>
64 <artifactId>maven-core</artifactId>
65 <version>3.2.1</version>
66 <scope>provided</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.apache.maven.plugin-tools</groupId>
70 <artifactId>maven-plugin-annotations</artifactId>
71 <version>3.2</version>
72 <scope>provided</scope>
73 </dependency>
74 <dependency>
75 <groupId>org.codehaus.plexus</groupId>
76 <artifactId>plexus-utils</artifactId>
77 <version>3.0.17</version>
78 </dependency>
79 <dependency>
80 <groupId>org.eclipse</groupId>
81 <artifactId>ui</artifactId>
82 <version>3.3.0-I20070614-0800</version>
83 <scope>provided</scope>
84 </dependency>
85 <dependency>
86 <groupId>junit</groupId>
87 <artifactId>junit</artifactId>
88 <version>4.11</version>
89 <scope>test</scope>
90 </dependency>
91 </dependencies>
92
93 <build>
94 <plugins>
95 <plugin>
96 <groupId>org.codehaus.plexus</groupId>
97 <artifactId>plexus-component-metadata</artifactId>
98 <version>1.5.5</version>
99 <executions>
100 <execution>
101 <goals>
102 <goal>generate-metadata</goal>
103 </goals>
104 </execution>
105 </executions>
106 </plugin>
107 <plugin>
108 <artifactId>maven-plugin-plugin</artifactId>
109 <version>3.3</version>
110 <configuration>
111 <goalPrefix>os</goalPrefix>
112 <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
113 </configuration>
114 <executions>
115 <execution>
116 <id>mojo-descriptor</id>
117 <goals>
118 <goal>descriptor</goal>
119 </goals>
120 </execution>
121 <execution>
122 <id>help-goal</id>
123 <goals>
124 <goal>helpmojo</goal>
125 </goals>
126 </execution>
127 </executions>
128 </plugin>
129 <plugin>
130 <artifactId>maven-jar-plugin</artifactId>
131 <version>2.4</version>
132 <configuration>
133 <archive>
134 <manifestEntries>
135 <Bundle-ManifestVersion>2</Bundle-ManifestVersion>
136 <Bundle-Name>os-maven-plugin</Bundle-Name>
137 <Bundle-SymbolicName>kr.motd.maven.os;singleton:=true</Bundle-SymbolicName>
138 <Bundle-Version>${project.version}</Bundle-Version>
139 <Require-Bundle>org.eclipse.core.runtime,org.eclipse.ui</Require-Bundle>
140 <Bundle-RequiredExecutionEnvironment>JavaSE-1.6</Bundle-RequiredExecutionEnvironment>
141 </manifestEntries>
142 </archive>
143 </configuration>
144 </plugin>
145 </plugins>
146 </build>
147</project>
148