is version 1.1.4 available in Maven?

Asked by Bryan

Hi, I'm developing in Java.

1.1.4 is not available on Maven repository, tried to use the coordinates provided but Maven don't use other repositories.

<groupId>com.sikulix</groupId>
<artifactId>sikulixapi</artifactId>
<version>1.1.4-SNAPSHOT</version>

Is there other way I can build Maven using 1.1.4?

Thanks!

Question information

Language:
English Edit question
Status:
Solved
For:
SikuliX Edit question
Assignee:
No assignee Edit question
Solved by:
Bryan
Solved:
Last query:
Last reply:
Revision history for this message
Bryan (bryanvaldellon) said :
#1

Solved. used this.

<repositories>
     <repository>
         <id>appfuse-snapshots</id>
         <url>http://oss.sonatype.org/content/groups/public</url>
         <releases>
             <enabled>false</enabled>
         </releases>
         <snapshots>
             <enabled>true</enabled>
         </snapshots>
     </repository>
 </repositories>