Flavour Plus
Flavour Plus is an enhanced fork of the Flavour library for TeaVM,
providing extra features and enhancements to this great
single-page-app framework for Java and JVM languages.
Features in 0.3.0-SNAPSHOT
Get Started
First add the Frequal repository in your maven settings.xml:
<profile>
<id>frequal-snapshots</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>archetype</id>
<url>https://frequal.com/maven-repository</url>
<releases>
<enabled>true</enabled>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<checksumPolicy>warn</checksumPolicy>
</snapshots>
</repository>
</repositories>
</profile>
Dependency
(in properties)
<flavour.version>0.3.0-SNAPSHOT</flavour.version>
(in dependencies)
<dependency>
<groupId>org.teavm.flavour</groupId>
<artifactId>teavm-flavour-widgets</artifactId>
<version>${flavour.version}</version>
</dependency>
<dependency>
<groupId>org.teavm.flavour</groupId>
<artifactId>teavm-flavour-rest</artifactId>
<version>${flavour.version}</version>
</dependency>
Sample Application via Archetype
Run this maven command to get started with the archetype sample applpication:
mvn archetype:generate \
-DarchetypeGroupId=org.teavm.flavour \
-DarchetypeArtifactId=teavm-flavour-application \
-DarchetypeVersion=0.3.0-SNAPSHOT \
-P frequal-snapshots
Last modified on 30 Oct 2022 by AO
Copyright © 2022 Andrew Oliver