-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpom.xml
76 lines (75 loc) · 2.92 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
<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>
<artifactId>olog</artifactId>
<groupId>edu.msu.nscl.olog</groupId>
<relativePath>../../</relativePath>
<version>2.2.9-SNAPSHOT</version>
</parent>
<artifactId>pyOlog</artifactId>
<url>http://olog.github.com/</url>
<properties>
<github.projectName>pyOlog</github.projectName>
<github.projectOwner>Olog</github.projectOwner>
</properties>
<scm>
<connection>scm:git:ssh://[email protected]/${github.projectOwner}/${github.projectName}.git</connection>
<developerConnection>scm:git:github</developerConnection>
<url>ssh://[email protected]/${github.projectOwner}/${github.projectName}.git</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>jira</system>
<url>http://java.net/jira/browse/OLOG/component/14887</url>
</issueManagement>
<ciManagement>
<system>Jenkins</system>
<url>https://openepics.ci.cloudbees.com/view/Olog/</url>
</ciManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.7.1</version>
<configuration>
<columnNames>Fix Version,Priority,Type,Summary,Assignee,Key,Status,Resolution</columnNames>
<sortColumnNames>Fix Version,Priority,Key DESC</sortColumnNames>
<component>pyOlog</component>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>jira-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>com.soebes.maven.plugins.dmg</groupId>
<artifactId>doxygen-maven-plugin</artifactId>
<version>1.0.1</version>
<configuration>
<projectName>Python Olog Client Library</projectName>
<input>./pyOlog</input>
<filePatterns>*.py</filePatterns>
<recursive>yes</recursive>
<exclude>./pyOlog/test</exclude>
<htmlOutput>html</htmlOutput>
</configuration>
</plugin>
</plugins>
</reporting>
</project>