Create Java Server Faces Testprojekt: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Zeile 1: | Zeile 1: | ||
{{note|Noch in Bearbeitung}} | {{note|Noch in Bearbeitung}} | ||
== pom.xml == | |||
<pre> | |||
<dependencies> | |||
... | |||
<!-- https://mvnrepository.com/artifact/org.glassfish/javax.faces --> | |||
<dependency> | |||
<groupId>org.glassfish</groupId> | |||
<artifactId>javax.faces</artifactId> | |||
<version>2.3.2</version> | |||
</dependency> | |||
... | |||
</dependencies> | |||
</pre> | |||
== Links == | == Links == |
Version vom 5. August 2017, 15:12 Uhr
Noch in Bearbeitung
pom.xml
<dependencies> ... <!-- https://mvnrepository.com/artifact/org.glassfish/javax.faces --> <dependency> <groupId>org.glassfish</groupId> <artifactId>javax.faces</artifactId> <version>2.3.2</version> </dependency> ... </dependencies>
Links
https://maven.apache.org/plugins/maven-war-plugin/usage.html
Zurück zu Java