It looks like you Maven setup is outdated. 0.9.9 has been released and the nightlies are now downloading 0.9.10 snapshots. Which are you trying to build?
From: Jim McNamara<mailto:robol...@yahoo.com> Sent: Friday, June 3, 2022 8:49 AM To: users@royale.apache.org<mailto:users@royale.apache.org> Subject: could not find artifact new pom I tried to do mvn clean install -U. It can't find the Core:swc. thanks The POM for org.apache.royale.framework:Core:swc:0.9.9-SNAPSHOT is missing, no dependency information available The POM for org.apache.royale.framework:HTML:swc:0.9.9-SNAPSHOT is missing, no dependency information available The POM for org.apache.royale.framework:Language:swc:0.9.9-SNAPSHOT is missing, no dependency information available Could not find artifact org.apache.royale.framework:Core:swc: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><http://maven.apache.org/xsd/maven-4.0.0.xsd%22%3e> <modelVersion>4.0.0</modelVersion> <groupId>mavenproject12</groupId> <artifactId>mavenproject12</artifactId> <version>0.9.9-SNAPSHOT</version> <packaging> jar</packaging> <properties> <compiler.debug>true</compiler.debug> </properties> <build> <directory>/home/megatron/.m2/repository/org/apache/royale/framework/royale-simple-application-pure-js-archetype/0.9.9/</directory> <sourceDirectory>src/main/royale</sourceDirectory> <plugins> <plugin> <groupId>org.apache.royale.compiler</groupId> <artifactId>royale-maven-plugin</artifactId> <version>0.9.9</version> <extensions>true</extensions> <configuration> <mainClass>HelloWorld.mxml</mainClass> <targets>JSRoyale,SWF</targets> <debug>false</debug> <!-- <additionalCompilerOptions>-source-map=true;</additionalCompilerOptions> --> <executions> <execution> <id>id.validate</id> <phase>validate</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <echo>validate phase</echo> </tasks> </configuration> </execution> <execution> <id>id.compile</id> <phase>compile</phase> <goals> <goal>run</goal> </goals> </execution> <execution> <id>id.install</id> <phase>install</phase> <goals> <goal>install</goal> </goals> <configuration> <outputDirectory>/home/megatron/.m2/repository/org/apache/royale/framework/royale-simple-application-pure-js-archetype/0.9.9</outputDirectory> <tasks> <echo>install phase</echo> </tasks> </configuration> </execution> </executions> </configuration> <dependencies> <dependency> <groupId>org.apache.royale.compiler</groupId> <artifactId>compiler-jx</artifactId> <version>0.9.9</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.0</version> <configuration> <jarName> meteor </jarName> <outputDirectory>/home/megatron/.m2/repository/org/apache/royale/framework/royale-simple-application-pure-js-archetype/0.9.9/</outputDirectory> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.royale.framework</groupId> <artifactId>Core</artifactId> <version>0.9.9-SNAPSHOT</version> <type>swc</type> </dependency> <!-- Needed for JavaScript compilation --> <dependency> <groupId>org.apache.royale.framework</groupId> <artifactId>HTML</artifactId> <version>0.9.9-SNAPSHOT</version> <type>swc</type> </dependency> <dependency> <groupId>org.apache.royale.framework</groupId> <artifactId>Language</artifactId> <version>0.9.9-SNAPSHOT</version> <type>swc</type> </dependency> </dependencies> <profiles> <profile> <id>apache-release</id> <properties> <compiler.debug>false</compiler.debug> </properties> </profile> </profiles> </project>