-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
executable file
·67 lines (59 loc) · 2.48 KB
/
pom.xml
File metadata and controls
executable file
·67 lines (59 loc) · 2.48 KB
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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.bounded.buffer</groupId>
<artifactId>blog</artifactId>
<version>1.0.0</version>
<scm>
<connection>scm:git:https://github.com/robaustin123/blog</connection>
<developerConnection>scm:git:://github.com/robaustin123/blog</developerConnection>
<url>https://github.com/robaustin123/blog</url>
<tag>master</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.9.5</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<aggregate>true</aggregate>
<show>public</show>
<nohelp>true</nohelp>
<header>ConcurrentBlockingIntQueue, ${project.version}</header>
<footer>ConcurrentBlockingIntQueue, ${project.version}</footer>
<doctitle>ConcurrentBlockingIntQueue, ${project.version}</doctitle>
<links>
<link>http://static.springsource.org/spring/docs/3.0.x/javadoc-api/</link>
</links>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
<version>1.0-beta-2</version>
<configuration>
<checkoutDirectory>${project.build.directory}/scmpublish</checkoutDirectory>
<checkinComment>Publishing javadoc for ${project.artifactId}:${project.version}</checkinComment>
<content>${project.reporting.outputDirectory}/apidocs</content>
<skipDeletedFiles>true</skipDeletedFiles>
<pubScmUrl>scm:git:https://github.com/robaustin123/blog</pubScmUrl>
<scmBranch>master</scmBranch>
</configuration>
</plugin>
-->
</plugins>
</build>
</project>