forked from Waffle/waffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
58 lines (48 loc) · 1.91 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Waffle (https://github.com/dblock/waffle)
Copyright (c) 2010-2016 Application Security, Inc.
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse
Public License v1.0 which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html.
Contributors: Application Security, Inc.
-->
<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>com.github.waffle</groupId>
<artifactId>waffle-launcher</artifactId>
<version>2.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>waffle-launcher</name>
<description>Launcher POM for WAFFLE</description>
<url>https://waffle.github.io/waffle/</url>
<modules>
<module>Source/JNA</module>
</modules>
<distributionManagement>
<site>
<id>gh-pages</id>
<name>Waffle GitHub Pages</name>
<url>github:https://waffle.github.io/waffle/</url>
</site>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.8.2</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>