Issue:
Where can I access the Twigkit repositories?
Environment:
App Studio, App Studio Enterprise
Resolution:
Twigkit repositories have been changed from http://twigkit.artifactoryonline.com/twigkit/repo, http://twigkit.jfrog.io/twigkit/repo to https://twigkit.jfrog.io/twigkit/repo. This document will guide you to make required changes to build the AppStudio maven project.
Applicable to:
- Downloaded project from Fusion App Studio
- App Studio Enterprise
Steps to modify twigkit repositories:
1. Stop the app.
2.In the pom.xml file locate repositories, change every reference to Twigkit repositories (e.g. http://twigkit.jfrog.io) by replacing "http://"" with "https://"".the for example:
https://gist.github.com/vrindavda/c3bea8aba500646eae36dd13b9b433fa
<repositories>
<repository>
<id>twigkit.com</id>
<name>Twigkit</name>
<url>https://twigkit.jfrog.io/twigkit/repo </url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
3. If you are using your own maven settings.xml. Do the same in settings.xmlExample: https://gist.github.com/vrindavda/71ef2aad378fa75799bc129e8d76daff
<!—Artifact repositories --> <repositories> <repository> <id>twigkit.com</id> <name>Twigkit</name> <url>https://twigkit.jfrog.io/twigkit/repo </url> <releases> </releases> <snapshots> </snapshots> </repository> </repositories> <!-- Plugin repositories --> <pluginRepositories> <pluginRepository> <id>twigkit.com</id> <name>Twigkit</name> <url>https://twigkit.jfrog.io/twigkit/repo </url> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> <checksumPolicy>warn</checksumPolicy> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> <checksumPolicy>warn</checksumPolicy> </snapshots> </pluginRepository> </pluginRepositories>
4. Build the project.
5. Start the app.
6.If you are running the appstudio using start script as
./app-studio start
Make the repo changes in settings.xml in your <project root>/bin
Comments
0 comments
Please sign in to leave a comment.