Skip to content

Commit

Permalink
rename demos in ee9
Browse files Browse the repository at this point in the history
  • Loading branch information
gregw committed Apr 26, 2022
1 parent c8719ab commit ebd59ca
Show file tree
Hide file tree
Showing 382 changed files with 61 additions and 61 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.eclipse.jetty.ee9.demos</groupId>
<artifactId>demo-async-rest</artifactId>
<artifactId>demo-ee9-async-rest</artifactId>
<version>12.0.0-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>demo-async-rest-jar</artifactId>
<artifactId>demo-ee9-async-rest-jar</artifactId>
<packaging>jar</packaging>
<name>EE9 :: Jetty Demo :: Async Rest :: Jar</name>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.eclipse.jetty.ee9.demos</groupId>
<artifactId>demo-async-rest</artifactId>
<artifactId>demo-ee9-async-rest</artifactId>
<version>12.0.0-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>demo-async-rest-server</artifactId>
<artifactId>demo-ee9-async-rest-server</artifactId>
<packaging>jar</packaging>
<name>EE9 :: Jetty Demo :: Async Rest :: Server</name>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.eclipse.jetty.ee9.demos</groupId>
<artifactId>demo-async-rest</artifactId>
<artifactId>demo-ee9-async-rest</artifactId>
<version>12.0.0-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>demo-async-rest-webapp</artifactId>
<artifactId>demo-ee9-async-rest-webapp</artifactId>
<packaging>war</packaging>
<name>EE9 :: Jetty Demo :: Async Rest :: WebApp</name>

Expand All @@ -22,7 +22,7 @@
</dependency>
<dependency>
<groupId>org.eclipse.jetty.ee9.demos</groupId>
<artifactId>demo-async-rest-jar</artifactId>
<artifactId>demo-ee9-async-rest-jar</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.toolchain</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>demo-async-rest</artifactId>
<artifactId>demo-ee9-async-rest</artifactId>
<packaging>pom</packaging>
<name>EE9 :: Jetty Demo :: Async Rest</name>

<modules>
<module>demo-async-rest-jar</module>
<module>demo-async-rest-webapp</module>
<module>demo-async-rest-server</module>
<module>demo-ee9-async-rest-jar</module>
<module>demo-ee9-async-rest-webapp</module>
<module>demo-ee9-async-rest-server</module>
</modules>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
</dependency>
<dependency>
<groupId>org.eclipse.jetty.ee9.demos</groupId>
<artifactId>demo-mock-resources</artifactId>
<artifactId>demo-ee9-mock-resources</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.ee9</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>jetty-ee9-demos</artifactId>
<version>12.0.0-SNAPSHOT</version>
</parent>
<artifactId>demo-jaas-webapp</artifactId>
<artifactId>demo-ee9-jaas-webapp</artifactId>
<name>EE9 :: Jetty Demo :: JAAS :: WebApp</name>
<packaging>war</packaging>
<properties>
Expand Down Expand Up @@ -35,7 +35,7 @@
<!-- This is for convenience so that the src/etc/login.conf file can stay unmodified when copied to $jetty.home/etc directory -->
<jetty.base>${basedir}/src/main/config/modules/demo.d</jetty.base>
<!-- Mandatory. This system property tells JAAS where to find the login module configuration file -->
<java.security.auth.login.config>${basedir}/src/main/config/modules/demo.d/demo-login.conf</java.security.auth.login.config>
<java.security.auth.login.config>${basedir}/src/main/config/modules/demo.d/demo-ee9-login.conf</java.security.auth.login.config>
</systemProperties>
<webApp>
<contextPath>/test-jaas</contextPath>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<version>12.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>demo-jetty-webapp</artifactId>
<artifactId>demo-ee9-jetty-webapp</artifactId>
<name>EE9 :: Jetty Demo :: Jetty :: WebApp</name>
<packaging>war</packaging>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>jetty-ee9-demos</artifactId>
<version>12.0.0-SNAPSHOT</version>
</parent>
<artifactId>demo-jndi-webapp</artifactId>
<artifactId>demo-ee9-jndi-webapp</artifactId>
<name>EE9 :: Jetty Demo :: JNDI :: WebApp</name>
<packaging>war</packaging>
<properties>
Expand Down Expand Up @@ -46,7 +46,7 @@
<goal>copy-dependencies</goal>
</goals>
<configuration>
<includeArtifactIds>jakarta.transaction-api,demo-mock-resources</includeArtifactIds>
<includeArtifactIds>jakarta.transaction-api,demo-ee9-mock-resources</includeArtifactIds>
<outputDirectory>${project.build.directory}/lib/jndi</outputDirectory>
</configuration>
</execution>
Expand All @@ -70,7 +70,7 @@
<dependencies>
<dependency>
<groupId>org.eclipse.jetty.ee9.demos</groupId>
<artifactId>demo-mock-resources</artifactId>
<artifactId>demo-ee9-mock-resources</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
Expand All @@ -81,7 +81,7 @@
<dependencies>
<dependency>
<groupId>org.eclipse.jetty.ee9.demos</groupId>
<artifactId>demo-mock-resources</artifactId>
<artifactId>demo-ee9-mock-resources</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>demo-jsp-webapp</artifactId>
<artifactId>demo-ee9-jsp-webapp</artifactId>
<name>EE9 :: Jetty Demo :: JSP :: Webapp</name>
<packaging>war</packaging>

Expand All @@ -28,7 +28,7 @@
<instructions>
<Import-Package>jakarta.servlet.jsp.*;version="[3,4)",org.eclipse.jetty.*;version="[$(version;===;${parsedVersion.osgiVersion}),$(version;==+;${parsedVersion.osgiVersion}))",*</Import-Package>
<Export-Package>!org.example.*</Export-Package>
<Web-ContextPath>/demo-jsp</Web-ContextPath>
<Web-ContextPath>/demo-ee9-jsp</Web-ContextPath>
<Bundle-ClassPath>.,WEB-INF/classes</Bundle-ClassPath>
</instructions>
</configuration>
Expand Down

0 comments on commit ebd59ca

Please sign in to comment.