yacy_search_server/libbuild/pom.xml
reger b1926d1e98 activate hack in libbuild/pom.xml to include main project as build module
This allows to use libbuild/pom as main maven project to build all needed
libs to compile and run YaCy, including YaCy itself.

Furthermore, maven is well supported by Netbeans IDE so we can discontinue
to maintaine Netbeans IDE specific project settings (in directory nbproject,
which lack config for debug anyway, nbproject can be deleted and NB will
compile YaCy via maven).

Additionally adjusted pom's project name to match the name in the repository.
2016-03-13 04:03:32 +01:00

34 lines
1.2 KiB
XML

<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>net.yacy</groupId>
<artifactId>extlib</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<name>YaCy - Build Library Utility</name>
<description>build artifacts/jars needed to compile and run YaCy and the main YaCy search server </description>
<url>http://www.yacy.net</url>
<scm>
<connection>scm:git:https://github.com/yacy/yacy_search_server.git</connection>
<url>https://github.com/yacy/yacy_search_server</url>
</scm>
<modules>
<module>GitRevMavenTask</module>
<module>WebCat-swf</module>
<module>J7Zip-modified</module>
<!-- hack to include YaCy search server (main project) as module -->
<module>..</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
</project>