How to get 8.11 in maven

Issue #31 resolved
Former user created an issue

Hi Jens,

I would like to try out the 525 icons that is included in your 8.11. But I am unable to find this version in maven. Is there any possiblity to get this jar-file?

Cheers, Cheng

Comments (6)

  1. Jens Deters repo owner

    Did you add this to your ~/.m2/settings.xml?

    <settings>
      <profiles>
            <profile>
                <repositories>
                    <repository>
                        <snapshots>
                            <enabled>false</enabled>
                        </snapshots>
                        <id>central</id>
                        <name>bintray</name>
                        <url>http://jcenter.bintray.com</url>
                    </repository>
                </repositories>
                <pluginRepositories>
                    <pluginRepository>
                        <snapshots>
                            <enabled>false</enabled>
                        </snapshots>
                        <id>central</id>
                        <name>bintray-plugins</name>
                        <url>http://jcenter.bintray.com</url>
                    </pluginRepository>
                </pluginRepositories>
                <id>bintray</id>
            </profile>
        </profiles>
        <activeProfiles>
            <activeProfile>bintray</activeProfile>
        </activeProfiles>
    </settings>
    
  2. Former user Account Deleted

    yes, I did add your code snippet to

    C:\Program Files (x86)\NetBeans 8.0.2\java\maven\conf\settings.xml 
    

    because maven is integrated within netbeans 8.0.2. I also tried to add your repo with the netbeans integrated maven repo functionality in Windows>Services>Maven Repositories>Add Repository. But both ways result in this error: "No result, processing index". Have you come across this error?

  3. Log in to comment