Permalink
Comparing changes
Open a pull request
- 4 commits
- 2 files changed
- 0 commit comments
- 1 contributor
Commits on Apr 03, 2019
… communication with the remote maven repo
Commits on Apr 05, 2019
[WFLY-11932] Use HTTPS for repository and pluginRepository URLs
Unified
Split
Showing
with
12 additions
and 4 deletions.
- +2 −2 docs/src/main/asciidoc/_extending-wildfly/Example_subsystem.adoc
- +10 −2 pom.xml
| @@ -17,7 +17,7 @@ mvn archetype:generate \ | ||
| -DarchetypeArtifactId=wildfly-subsystem \ | ||
| -DarchetypeGroupId=org.wildfly.archetypes \ | ||
| -DarchetypeVersion=8.0.0.Final \ | ||
| -DarchetypeRepository=http://repository.jboss.org/nexus/content/groups/public | ||
| -DarchetypeRepository=https://repository.jboss.org/nexus/content/groups/public | ||
| ---- | ||
|
|
||
| Maven will download the archetype and it's dependencies, and ask you | ||
| @@ -29,7 +29,7 @@ $ mvn archetype:generate \ | ||
| -DarchetypeArtifactId=wildfly-subsystem \ | ||
| -DarchetypeGroupId=org.wildfly.archetypes \ | ||
| -DarchetypeVersion=8.0.0.Final \ | ||
| -DarchetypeRepository=http://repository.jboss.org/nexus/content/groups/public | ||
| -DarchetypeRepository=https://repository.jboss.org/nexus/content/groups/public | ||
| [INFO] Scanning for projects... | ||
| [INFO] | ||
| [INFO] ------------------------------------------------------------------------ | ||
| @@ -173,6 +173,14 @@ | ||
| <!-- Version suffix that is appended to directories. Default is the maven GAV version but this can be edited to use a short form version --> | ||
| <server.output.dir.version>${project.version}</server.output.dir.version> | ||
|
|
||
| <!-- Protocol to use for communication with remote maven repositories. | ||
| You can set to 'http' if you are using a maven proxy and 'https' | ||
| interferes with that. Use 'https' for builds that will be released | ||
| to non-snapshot public maven repos --> | ||
| <maven.repository.protocol>https</maven.repository.protocol> | ||
| <!-- The full remote maven repo URL; can be overridden via -D for special use cases --> | ||
| <maven.repository.url>${maven.repository.protocol}://repository.jboss.org/nexus/content/groups/public/</maven.repository.url> | ||
|
|
||
| <!-- Surefire args --> | ||
| <surefire.extra.args></surefire.extra.args> | ||
| <surefire.jpda.args></surefire.jpda.args> | ||
| @@ -6722,7 +6730,7 @@ | ||
| </snapshots> | ||
| <id>jboss-public-repository-group</id> | ||
| <name>JBoss Public Repository Group</name> | ||
| <url>http://repository.jboss.org/nexus/content/groups/public/</url> | ||
| <url>${maven.repository.url}</url> | ||
| <layout>default</layout> | ||
| </repository> | ||
| </repositories> | ||
| @@ -6737,7 +6745,7 @@ | ||
| </snapshots> | ||
| <id>jboss-public-repository-group</id> | ||
| <name>JBoss Public Repository Group</name> | ||
| <url>http://repository.jboss.org/nexus/content/groups/public/</url> | ||
| <url>${maven.repository.url}</url> | ||
| </pluginRepository> | ||
| </pluginRepositories> | ||
|
|
||