I barely know anything about maven. My guess is that you don't have snapshots enabled. In my m2/settings.xml I've got the following

<profiles>
<profile>
    <id>ossrh</id>
    <activation>
        <activeByDefault>true</activeByDefault>
    </activation>

    <repositories>
        <repository>
            <id>maven-snapshots</id>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
            <layout>default</layout>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>

</profile>
</profiles>


On 2/23/2020 12:39 AM, Geertjan Wielenga wrote:
When I run your maven command I get this:

*The desired archetype does not exist
(com.raelity.jfx:javafx-archetype-simple:0.0.4-SNAPSHOT)*

Gj

On Sun, Feb 23, 2020 at 9:32 AM Geertjan Wielenga <geert...@apache.org>
wrote:

Thanks for the work on this.

If we were to register this in Apache NetBeans 12.0, we'd have to make
clear that this is not Gluon OpenJFX, but something different, i.e., maybe
something like "NetBeans Friendly Gluon OpenJFX" or specifically your name,
i.e., Ernie Rael fork of etc.

Does it compile and run both with JDK 8 and 11, i.e., the LTS releases of
the JDK?

Gj

On Sat, Feb 22, 2020 at 7:36 PM Ernie Rael <err...@raelity.com> wrote:

That didn't come out quite right. Here it is *with* SNAPSHOT specified

mvn archetype:generate \
          -DarchetypeGroupId=com.raelity.jfx \
          -DarchetypeArtifactId=javafx-archetype-simple \
          -DarchetypeVersion=0.0.4-SNAPSHOT \
          -DgroupId=groupid \
          -DartifactId=artifactId \
          -Dversion=version

Note: there are two archetypes 'simple' and 'fxml'

-ernie



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org
For additional commands, e-mail: dev-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists






---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@netbeans.apache.org
For additional commands, e-mail: dev-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Reply via email to