-
1. Re: WildFly 18.0.1.Final - Error fetching WildFly component 'org.picketlink:picketlink-api:::2.5.5.SP12-redhat-00006'
ctomc Jan 7, 2020 5:37 AM (in response to notify)see WildFly Development - Fail to compile wildfly 18 since some poms and jars missing | List View for details on this.
maybe wolfc can help why provisioning failed.
-
2. Re: WildFly 18.0.1.Final - Error fetching WildFly component 'org.picketlink:picketlink-api:::2.5.5.SP12-redhat-00006'
notify Jan 7, 2020 8:48 AM (in response to notify)Looked at; WildFly Development - Fail to compile wildfly 18 since some poms and jars missing
But using Gradle 'provision.gradle' can't get reference to 'wildfly/pom.xml at 18.0.0.Final · wildfly/wildfly · GitHub '
-
3. Re: WildFly 18.0.1.Final - Error fetching WildFly component 'org.picketlink:picketlink-api:::2.5.5.SP12-redhat-00006'
lafr Jan 7, 2020 1:20 PM (in response to notify)Did not use gradle, but for maven I have this in my settings.xml to find the missing version jars:
<repository>
<id>jboss-ga-repository</id>
<url>https://maven.repository.redhat.com/techpreview/all</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
-
4. Re: WildFly 18.0.1.Final - Error fetching WildFly component 'org.picketlink:picketlink-api:::2.5.5.SP12-redhat-00006'
chris.turchin Feb 10, 2020 12:25 PM (in response to lafr)Has anyone gotten this working with gradle (I am using 5.6)?
I added the Index of /techpreview/all url as a maven repository in my gradle file and now get "peer not authenticated"
I am pretty sure this worked as recently as december.
-
5. Re: WildFly 18.0.1.Final - Error fetching WildFly component 'org.picketlink:picketlink-api:::2.5.5.SP12-redhat-00006'
jaikiran Feb 11, 2020 8:22 AM (in response to chris.turchin)According to the information here Re: Galleon 4.1.0 cannot find artifact for wildfly 18 , I think you will need https://maven.repository.redhat.com/ga/ repository in your build configuration. How to do that in gradle is something that I'm unsure about, given my lack of experience with that tool.
-
6. Re: WildFly 18.0.1.Final - Error fetching WildFly component 'org.picketlink:picketlink-api:::2.5.5.SP12-redhat-00006'
turchinc Feb 11, 2020 9:14 AM (in response to chris.turchin)update, using
plugins {
id 'org.wildfly.build.provision' version '0.0.11'
}
repositories {
jcenter()
maven { url 'http://maven.repository.redhat.com/ga' }
maven { url 'http://repository.jboss.org/nexus/content/groups/public' }
}
def wildflyVersion = '18.0.1.Final'
def wildflyDir = "$projectDir/wildfly-$wildflyVersion"
provision {
variables['wildfly.version'] = wildflyVersion
configuration = "$projectDir/conf/wildfly-provisioning.xml"
destinationDir = file( wildflyDir)
doLast { copy { from "$projectDir/layer" into wildflyDir } }
}did not work yesterday and did today. So maybe there was some hiccup in the repository or our end, I dunno.