|
6 | 6 | <parent> |
7 | 7 | <groupId>org.codehaus.plexus</groupId> |
8 | 8 | <artifactId>plexus</artifactId> |
9 | | - <version>4.0</version> |
| 9 | + <version>5.0</version> |
10 | 10 | </parent> |
11 | 11 |
|
12 | 12 | <artifactId>plexus-archiver</artifactId> |
|
23 | 23 | <system>jira</system> |
24 | 24 | <url>https://github.com/codehaus-plexus/plexus-archiver/issues</url> |
25 | 25 | </issueManagement> |
| 26 | + <distributionManagement> |
| 27 | + <site> |
| 28 | + <id>github:gh-pages</id> |
| 29 | + <url>${project.scm.developerConnection}</url> |
| 30 | + </site> |
| 31 | + </distributionManagement> |
| 32 | + |
| 33 | + <properties> |
| 34 | + <javaVersion>7</javaVersion> |
| 35 | + </properties> |
26 | 36 |
|
27 | 37 | <contributors> |
28 | 38 | <contributor> |
|
86 | 96 |
|
87 | 97 |
|
88 | 98 | <build> |
89 | | - <pluginManagement> |
90 | | - <plugins> |
91 | | - <plugin> |
92 | | - <groupId>org.apache.maven.plugins</groupId> |
93 | | - <artifactId>maven-site-plugin</artifactId> |
94 | | - <version>3.4</version> |
95 | | - </plugin> |
96 | | - <plugin> |
97 | | - <groupId>org.apache.maven.plugins</groupId> |
98 | | - <artifactId>maven-gpg-plugin</artifactId> |
99 | | - <version>1.6</version> |
100 | | - </plugin> |
101 | | - </plugins> |
102 | | - </pluginManagement> |
103 | 99 | <plugins> |
104 | | - <plugin> |
105 | | - <groupId>org.apache.maven.plugins</groupId> |
106 | | - <artifactId>maven-surefire-plugin</artifactId> |
107 | | - </plugin> |
108 | 100 | <plugin> |
109 | 101 | <groupId>org.apache.maven.plugins</groupId> |
110 | 102 | <artifactId>maven-release-plugin</artifactId> |
111 | | - <version>2.5.2</version> |
112 | 103 | <configuration> |
113 | 104 | <!-- olamy: exclude files with strange names as failed here on osx --> |
114 | 105 | <checkModificationExcludes> |
|
119 | 110 | <plugin> |
120 | 111 | <groupId>org.codehaus.plexus</groupId> |
121 | 112 | <artifactId>plexus-component-metadata</artifactId> |
122 | | - <version>1.6</version> |
123 | 113 | <executions> |
124 | 114 | <execution> |
125 | 115 | <goals> |
|
131 | 121 | <plugin> |
132 | 122 | <groupId>org.apache.maven.plugins</groupId> |
133 | 123 | <artifactId>maven-enforcer-plugin</artifactId> |
134 | | - <version>1.4</version> |
135 | 124 | <executions> |
136 | 125 | <execution> |
137 | 126 | <id>enforce-java</id> |
|
149 | 138 | </executions> |
150 | 139 | </plugin> |
151 | 140 | <plugin> |
152 | | - <artifactId>maven-compiler-plugin</artifactId> |
| 141 | + <groupId>org.apache.maven.plugins</groupId> |
| 142 | + <artifactId>maven-scm-publish-plugin</artifactId> |
153 | 143 | <configuration> |
154 | | - <source>1.7</source> |
155 | | - <target>1.7</target> |
| 144 | + <content>${project.reporting.outputDirectory}</content><!-- mono-module doesn't require site:stage --> |
156 | 145 | </configuration> |
| 146 | + <executions> |
| 147 | + <execution> |
| 148 | + <id>scm-publish</id> |
| 149 | + <phase>site-deploy</phase><!-- deploy site with maven-scm-publish-plugin --> |
| 150 | + <goals> |
| 151 | + <goal>publish-scm</goal> |
| 152 | + </goals> |
| 153 | + </execution> |
| 154 | + </executions> |
157 | 155 | </plugin> |
158 | 156 | </plugins> |
159 | 157 | </build> |
|
0 commit comments