Skip to content

Commit bb03365

Browse files
authored
Merge pull request #353 from emmartins/wfly40
[CMTOOL-401] Add Wildfly 40
2 parents fdff97b + d5dad16 commit bb03365

File tree

65 files changed

+3604
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+3604
-0
lines changed

dist/standalone/pom.xml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,56 @@
452452
<artifactId>jboss-server-migration-wildfly39.0-to-wildfly39.0</artifactId>
453453
</dependency>
454454

455+
<!-- wfly 40.0 -->
456+
<dependency>
457+
<groupId>${project.groupId}</groupId>
458+
<artifactId>jboss-server-migration-wildfly40.0-server</artifactId>
459+
</dependency>
460+
<dependency>
461+
<groupId>${project.groupId}</groupId>
462+
<artifactId>jboss-server-migration-wildfly30.0-to-wildfly40.0</artifactId>
463+
</dependency>
464+
<dependency>
465+
<groupId>${project.groupId}</groupId>
466+
<artifactId>jboss-server-migration-wildfly31.0-to-wildfly40.0</artifactId>
467+
</dependency>
468+
<dependency>
469+
<groupId>${project.groupId}</groupId>
470+
<artifactId>jboss-server-migration-wildfly32.0-to-wildfly40.0</artifactId>
471+
</dependency>
472+
<dependency>
473+
<groupId>${project.groupId}</groupId>
474+
<artifactId>jboss-server-migration-wildfly33.0-to-wildfly40.0</artifactId>
475+
</dependency>
476+
<dependency>
477+
<groupId>${project.groupId}</groupId>
478+
<artifactId>jboss-server-migration-wildfly34.0-to-wildfly40.0</artifactId>
479+
</dependency>
480+
<dependency>
481+
<groupId>${project.groupId}</groupId>
482+
<artifactId>jboss-server-migration-wildfly35.0-to-wildfly40.0</artifactId>
483+
</dependency>
484+
<dependency>
485+
<groupId>${project.groupId}</groupId>
486+
<artifactId>jboss-server-migration-wildfly36.0-to-wildfly40.0</artifactId>
487+
</dependency>
488+
<dependency>
489+
<groupId>${project.groupId}</groupId>
490+
<artifactId>jboss-server-migration-wildfly37.0-to-wildfly40.0</artifactId>
491+
</dependency>
492+
<dependency>
493+
<groupId>${project.groupId}</groupId>
494+
<artifactId>jboss-server-migration-wildfly38.0-to-wildfly40.0</artifactId>
495+
</dependency>
496+
<dependency>
497+
<groupId>${project.groupId}</groupId>
498+
<artifactId>jboss-server-migration-wildfly39.0-to-wildfly40.0</artifactId>
499+
</dependency>
500+
<dependency>
501+
<groupId>${project.groupId}</groupId>
502+
<artifactId>jboss-server-migration-wildfly40.0-to-wildfly40.0</artifactId>
503+
</dependency>
504+
455505
<!-- EXTERNAL DEPENDENCIES -->
456506

457507
<dependency>
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright The WildFly Authors
4+
~ SPDX-License-Identifier: Apache-2.0
5+
-->
6+
<project xmlns="http://maven.apache.org/POM/4.0.0"
7+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9+
<modelVersion>4.0.0</modelVersion>
10+
11+
<parent>
12+
<groupId>org.jboss.migration</groupId>
13+
<artifactId>jboss-server-migration-parent</artifactId>
14+
<version>40.0.0.Final-SNAPSHOT</version>
15+
<relativePath>../../../../../pom.xml</relativePath>
16+
</parent>
17+
18+
<artifactId>jboss-server-migration-wildfly30.0-to-wildfly40.0-userguide</artifactId>
19+
20+
<name>JBoss Server Migration: User-Guide Wildfly 30.0 to Wildfly 40.0</name>
21+
22+
<dependencies>
23+
<dependency>
24+
<groupId>${project.groupId}</groupId>
25+
<artifactId>jboss-server-migration-docs-userguide-migration-includes</artifactId>
26+
</dependency>
27+
</dependencies>
28+
29+
<build>
30+
<plugins>
31+
<plugin>
32+
<artifactId>maven-resources-plugin</artifactId>
33+
<executions>
34+
<execution>
35+
<phase>generate-sources</phase>
36+
<goals>
37+
<goal>copy-resources</goal>
38+
</goals>
39+
<configuration>
40+
<outputDirectory>${project.build.directory}/asciidoc</outputDirectory>
41+
<resources>
42+
<resource>
43+
<directory>src/main/asciidoc</directory>
44+
</resource>
45+
</resources>
46+
</configuration>
47+
</execution>
48+
</executions>
49+
</plugin>
50+
<plugin>
51+
<groupId>org.apache.maven.plugins</groupId>
52+
<artifactId>maven-dependency-plugin</artifactId>
53+
<executions>
54+
<execution>
55+
<id>unpack-includes</id>
56+
<phase>generate-sources</phase>
57+
<goals>
58+
<goal>unpack-dependencies</goal>
59+
</goals>
60+
<configuration>
61+
<outputDirectory>${project.build.directory}/asciidoc</outputDirectory>
62+
<includeScope>compile</includeScope>
63+
</configuration>
64+
</execution>
65+
</executions>
66+
</plugin>
67+
<plugin>
68+
<groupId>org.asciidoctor</groupId>
69+
<artifactId>asciidoctor-maven-plugin</artifactId>
70+
<executions>
71+
<execution>
72+
<phase>generate-resources</phase>
73+
<goals>
74+
<goal>process-asciidoc</goal>
75+
</goals>
76+
<configuration>
77+
<sourceDocumentName>master.adoc</sourceDocumentName>
78+
<outputFile>${project.build.outputDirectory}/index.html</outputFile>
79+
</configuration>
80+
</execution>
81+
</executions>
82+
</plugin>
83+
</plugins>
84+
</build>
85+
86+
</project>
Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
// setup of vars used by this and/or included docs
2+
:server-source-productName: WildFly 30.0
3+
:server-source-name: WildFly
4+
:server-source-version: 30.0.0.Final
5+
:server-source-baseDir: wildfly-30.0
6+
7+
:server-target-productName: WildFly 40.0
8+
:server-target-name: WildFly
9+
:server-target-version: 40.0.0.Final
10+
:server-target-baseDir: wildfly-40.0
11+
12+
:includesDir: topics
13+
14+
// toc setup
15+
:toc:
16+
:numbered:
17+
18+
// include abstract
19+
include::{includesDir}/ServerMigration.adoc[]
20+
21+
// customize
22+
The server migration from {server-source-productName} to {server-target-productName} includes:
23+
24+
* Modules Migration
25+
* Standalone Server Migration
26+
* Managed Domain Migration
27+
28+
:leveloffset: +1
29+
30+
// --- modules migration
31+
32+
include::{includesDir}/ServerMigration-Modules.adoc[]
33+
34+
// --- standalone server migration
35+
36+
include::{includesDir}/ServerMigration-StandaloneServer.adoc[]
37+
38+
:leveloffset: +1
39+
40+
// ------ standalone server configuration migration
41+
42+
include::{includesDir}/ServerMigration-StandaloneServer-StandaloneServerConfiguration.adoc[]
43+
44+
:leveloffset: +1
45+
46+
include::{includesDir}/ServerMigration-ServerConfiguration-RemoveUnsupportedSubsystems.adoc[]
47+
48+
include::{includesDir}/ServerMigration-ServerConfiguration-MigrateReferencedModules.adoc[]
49+
50+
include::{includesDir}/ServerMigration-ServerConfiguration-MigrateReferencedPaths.adoc[]
51+
52+
include::{includesDir}/ServerMigration-ServerConfiguration-MigrateDeployments.adoc[]
53+
54+
:leveloffset: -1
55+
56+
:leveloffset: -1
57+
58+
// --- managed domain migration
59+
60+
include::{includesDir}/ServerMigration-ManagedDomain.adoc[]
61+
62+
// ------ domain configuration
63+
64+
:leveloffset: +1
65+
66+
include::{includesDir}/ServerMigration-ManagedDomain-DomainConfiguration.adoc[]
67+
68+
:leveloffset: +1
69+
70+
include::{includesDir}/ServerMigration-ServerConfiguration-RemoveUnsupportedSubsystems.adoc[]
71+
72+
include::{includesDir}/ServerMigration-ServerConfiguration-MigrateReferencedModules.adoc[]
73+
74+
include::{includesDir}/ServerMigration-ServerConfiguration-MigrateReferencedPaths.adoc[]
75+
76+
include::{includesDir}/ServerMigration-ManagedDomain-AddHostExcludes.adoc[]
77+
78+
include::{includesDir}/ServerMigration-ServerConfiguration-MigrateDeployments.adoc[]
79+
80+
:leveloffset: -1
81+
82+
// ------ host configuration
83+
84+
include::{includesDir}/ServerMigration-ManagedDomain-HostConfiguration.adoc[]
85+
86+
:leveloffset: +1
87+
88+
include::{includesDir}/ServerMigration-ServerConfiguration-MigrateReferencedModules.adoc[]
89+
90+
include::{includesDir}/ServerMigration-ServerConfiguration-MigrateReferencedPaths.adoc[]
91+
92+
:leveloffset: -1
93+
94+
:leveloffset: -1
95+
96+
:leveloffset: -1
97+
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyright The WildFly Authors
4+
~ SPDX-License-Identifier: Apache-2.0
5+
-->
6+
<project xmlns="http://maven.apache.org/POM/4.0.0"
7+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9+
<modelVersion>4.0.0</modelVersion>
10+
11+
<parent>
12+
<groupId>org.jboss.migration</groupId>
13+
<artifactId>jboss-server-migration-parent</artifactId>
14+
<version>40.0.0.Final-SNAPSHOT</version>
15+
<relativePath>../../../../../pom.xml</relativePath>
16+
</parent>
17+
18+
<artifactId>jboss-server-migration-wildfly31.0-to-wildfly40.0-userguide</artifactId>
19+
20+
<name>JBoss Server Migration: User-Guide Wildfly 31.0 to Wildfly 40.0</name>
21+
22+
<dependencies>
23+
<dependency>
24+
<groupId>${project.groupId}</groupId>
25+
<artifactId>jboss-server-migration-docs-userguide-migration-includes</artifactId>
26+
</dependency>
27+
</dependencies>
28+
29+
<build>
30+
<plugins>
31+
<plugin>
32+
<artifactId>maven-resources-plugin</artifactId>
33+
<executions>
34+
<execution>
35+
<phase>generate-sources</phase>
36+
<goals>
37+
<goal>copy-resources</goal>
38+
</goals>
39+
<configuration>
40+
<outputDirectory>${project.build.directory}/asciidoc</outputDirectory>
41+
<resources>
42+
<resource>
43+
<directory>src/main/asciidoc</directory>
44+
</resource>
45+
</resources>
46+
</configuration>
47+
</execution>
48+
</executions>
49+
</plugin>
50+
<plugin>
51+
<groupId>org.apache.maven.plugins</groupId>
52+
<artifactId>maven-dependency-plugin</artifactId>
53+
<executions>
54+
<execution>
55+
<id>unpack-includes</id>
56+
<phase>generate-sources</phase>
57+
<goals>
58+
<goal>unpack-dependencies</goal>
59+
</goals>
60+
<configuration>
61+
<outputDirectory>${project.build.directory}/asciidoc</outputDirectory>
62+
<includeScope>compile</includeScope>
63+
</configuration>
64+
</execution>
65+
</executions>
66+
</plugin>
67+
<plugin>
68+
<groupId>org.asciidoctor</groupId>
69+
<artifactId>asciidoctor-maven-plugin</artifactId>
70+
<executions>
71+
<execution>
72+
<phase>generate-resources</phase>
73+
<goals>
74+
<goal>process-asciidoc</goal>
75+
</goals>
76+
<configuration>
77+
<sourceDocumentName>master.adoc</sourceDocumentName>
78+
<outputFile>${project.build.outputDirectory}/index.html</outputFile>
79+
</configuration>
80+
</execution>
81+
</executions>
82+
</plugin>
83+
</plugins>
84+
</build>
85+
86+
</project>

0 commit comments

Comments
 (0)