|
42 | 42 | </snapshotRepository> |
43 | 43 | </distributionManagement> |
44 | 44 | <build> |
| 45 | + <pluginManagement> |
| 46 | + <plugins> |
| 47 | + <plugin> |
| 48 | + <artifactId>maven-compiler-plugin</artifactId> |
| 49 | + <version>3.1</version> |
| 50 | + <configuration> |
| 51 | + <source>1.7</source> |
| 52 | + <target>1.7</target> |
| 53 | + </configuration> |
| 54 | + </plugin> |
| 55 | + <plugin> |
| 56 | + <artifactId>maven-war-plugin</artifactId> |
| 57 | + <version>2.3</version> |
| 58 | + <configuration> |
| 59 | + <failOnMissingWebXml>false</failOnMissingWebXml> |
| 60 | + </configuration> |
| 61 | + </plugin> |
| 62 | + <plugin> |
| 63 | + <artifactId>maven-release-plugin</artifactId> |
| 64 | + <version>2.5.1</version> |
| 65 | + <configuration> |
| 66 | + <tagNameFormat>v@{project.version}</tagNameFormat> |
| 67 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 68 | + <releaseProfiles>release</releaseProfiles> |
| 69 | + </configuration> |
| 70 | + </plugin> |
| 71 | + <plugin> |
| 72 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 73 | + <version>2.10.1</version> |
| 74 | + <configuration> |
| 75 | + <show>private</show> |
| 76 | + <nohelp>true</nohelp> |
| 77 | + </configuration> |
| 78 | + </plugin> |
| 79 | + <plugin> |
| 80 | + <groupId>org.apache.maven.plugins</groupId> |
| 81 | + <artifactId>maven-source-plugin</artifactId> |
| 82 | + <version>2.4</version> |
| 83 | + </plugin> |
| 84 | + </plugins> |
| 85 | + </pluginManagement> |
45 | 86 | <plugins> |
46 | | - <plugin> |
47 | | - <artifactId>maven-compiler-plugin</artifactId> |
48 | | - <version>3.1</version> |
49 | | - <configuration> |
50 | | - <source>1.7</source> |
51 | | - <target>1.7</target> |
52 | | - </configuration> |
53 | | - </plugin> |
54 | | - <plugin> |
55 | | - <artifactId>maven-war-plugin</artifactId> |
56 | | - <version>2.3</version> |
57 | | - <configuration> |
58 | | - <failOnMissingWebXml>false</failOnMissingWebXml> |
59 | | - </configuration> |
60 | | - </plugin> |
61 | 87 | <plugin> |
62 | 88 | <groupId>org.wildfly.plugins</groupId> |
63 | 89 | <artifactId>wildfly-maven-plugin</artifactId> |
|
81 | 107 | <plugin> |
82 | 108 | <groupId>org.apache.maven.plugins</groupId> |
83 | 109 | <artifactId>maven-javadoc-plugin</artifactId> |
84 | | - <version>2.10.1</version> |
85 | | - <configuration> |
86 | | - <show>private</show> |
87 | | - <nohelp>true</nohelp> |
88 | | - </configuration> |
89 | 110 | <executions> |
90 | 111 | <execution> |
91 | 112 | <id>attach-javadocs</id> |
|
98 | 119 | <plugin> |
99 | 120 | <groupId>org.apache.maven.plugins</groupId> |
100 | 121 | <artifactId>maven-source-plugin</artifactId> |
101 | | - <version>2.4</version> |
102 | 122 | <executions> |
103 | 123 | <execution> |
104 | 124 | <id>attach-sources</id> |
|
108 | 128 | </execution> |
109 | 129 | </executions> |
110 | 130 | </plugin> |
111 | | - <plugin> |
112 | | - <groupId>org.apache.maven.plugins</groupId> |
113 | | - <artifactId>maven-release-plugin</artifactId> |
114 | | - <version>2.5.1</version> |
115 | | - <configuration> |
116 | | - <tagNameFormat>v@{project.version}</tagNameFormat> |
117 | | - <autoVersionSubmodules>true</autoVersionSubmodules> |
118 | | - <releaseProfiles>release</releaseProfiles> |
119 | | - </configuration> |
120 | | - </plugin> |
121 | 131 | </plugins> |
122 | 132 | </build> |
123 | 133 | </profile> |
|
0 commit comments