I try to compile a module from 8.1 to 8.3 and perspective artifact can’t be found ?
What repository are you pointing at?
<pluginRepositories>
<pluginRepository>
<id>releases</id>
<url>https://nexus.inductiveautomation.com/repository/inductiveautomation-releases</url>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<repositories>
<repository>
<id>releases</id>
<url>https://nexus.inductiveautomation.com/repository/inductiveautomation-releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</releases>
</repository>
<repository>
<id>snapshots</id>
<url>https://nexus.inductiveautomation.com/repository/inductiveautomation-snapshots</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
<repository>
<id>thirdparty</id>
<url>https://nexus.inductiveautomation.com/repository/inductiveautomation-thirdparty</url>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
I think you need to have the beta repository configured:
<repository>
<id>ia-beta</id>
<url>https://nexus.inductiveautomation.com/repository/inductiveautomation-beta</url>
</repository>
oops sorry..
just check another module where I added
<repository>
<id>ia-beta</id>
<url>https://nexus.inductiveautomation.com/repository/inductiveautomation-beta</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
@Kevin.Herron is this still the method by which we refer to perspective-gateway and perspective-common? Seems like it’s a snapshot server… since Ignition 8.3 is now in production, will these be moved to the releases repo?
You shouldn’t need the snapshot repositories any more.
Or the beta repository.
Confirmed on my end.
I had a misconfiguration in my Gradle build that was preventing proper discovery of the artifacts.
Thanks Kevin.
