forked from yegor256/netbout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
147 lines (147 loc) · 5.8 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?xml version="1.0"?>
<!--
* Copyright (c) 2009-2014, netbout.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are PROHIBITED without prior written permission from
* the author. This product may NOT be used anywhere and on any computer
* except the server platform of netbout Inc. located at www.netbout.com.
* Federal copyright law prohibits unauthorized reproduction by any means
* and imposes fines up to $25,000 for violation. If you received
* this code accidentally and without intent to use it, please report this
* incident to the author by email.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* This file is an Apache Maven 3.0 build automation script. Maven is used
* in the project since it's one of the most powerful and stable
* tools in the market. Other tools were reviewed, including: Apache Ant,
* Phing, and GNU Make (all I personally know). None of them are suitable
* better than Apache Maven to this project. Maven is widely supported
* by open source community and is extended by many plugins. The only
* critical defect that I know is that Maven doesn't support incremental
* build and re-builds everything from scratch. I already reported this
* problem: http://jira.codehaus.org/browse/MNG-4885.
*
* @author Yegor Bugayenko ([email protected])
* @version $Id$
* @link http://maven.apache.org/
* @link http://en.wikipedia.org/wiki/List_of_build_automation_software
-->
<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>
<parent>
<groupId>com.jcabi</groupId>
<artifactId>parent</artifactId>
<version>0.32.1</version>
</parent>
<groupId>com.netbout</groupId>
<artifactId>netbout</artifactId>
<version>3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>netbout-spi</module>
<module>netbout-client</module>
<module>netbout-web</module>
</modules>
<name>netbout</name>
<description>Private Talks Made Easy</description>
<url>http://www.netbout.com</url>
<inceptionYear>2009</inceptionYear>
<organization>
<name>Netbout Inc.</name>
<url>http://www.netbout.com</url>
</organization>
<licenses>
<license>
<name>private</name>
<url>http://www.netbout.com/LICENSE.txt</url>
<distribution>repo</distribution>
<comments>This is a proprietary software, you can't redistribute it</comments>
</license>
</licenses>
<developers>
<developer>
<id>1</id>
<name>Yegor Bugayenko</name>
<email>[email protected]</email>
<organization>Netbout Inc.</organization>
<organizationUrl>http://www.netbout.com</organizationUrl>
<roles>
<role>Architect</role>
<role>Developer</role>
</roles>
<timezone>-7</timezone>
</developer>
</developers>
<issueManagement>
<system>github</system>
<url>https://github.com/yegor256/netbout/issues</url>
</issueManagement>
<ciManagement>
<system>rultor</system>
<url>http://www.rultor.com/s/netbout</url>
</ciManagement>
<scm>
<connection>scm:git:github.com:yegor256/netbout.git</connection>
<developerConnection>scm:git:github.com:yegor256/netbout.git</developerConnection>
<url>https://github.com/yegor256/netbout</url>
</scm>
<distributionManagement>
<site>
<id>maven.netbout.com</id>
<url>http://maven.netbout.com/</url>
</site>
</distributionManagement>
<properties>
<timestamp>${maven.build.timestamp}</timestamp>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-aspects</artifactId>
<version>0.22</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<argLine>-Djava.awt.headless=true</argLine>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Djava.awt.headless=true</argLine>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>