blob: a4680895eb912a3b5b66c997f3a0f178595c8433 (
plain)
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
|
<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>de.fhg.fokus.net</groupId>
<name>IPFIX4Java </name>
<version>1.0-SNAPSHOT</version>
<artifactId>ipfix4java</artifactId>
<packaging>pom</packaging>
<modules>
<module>ipfix-api</module>
<module>ipfix-file-reader</module>
<module>ipfix-collector</module>
</modules>
<distributionManagement>
<repository>
<id>pt</id>
<url>${pt.releases.repo.url}</url>
</repository>
<snapshotRepository>
<id>pt</id>
<url>${pt.snapshots.repo.url}</url>
</snapshotRepository>
<site>
<id>pt-site</id>
<url>${pt.sites.deploy.url}</url>
</site>
</distributionManagement>
<description>Java implementation of the IPFIX protocol</description>
<url>https://svnsrv.fokus.fraunhofer.de/cc/ccnet/pt/wiki/IPFIX4Java
</url>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<configuration>
</configuration>
</plugin>
</plugins>
</reporting>
</project>
|