forked from wildfly/wildfly
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WFLY-8475]: JBoss-Product-Release-Name has changed in eap manifest, …
…breaking tools expectations. Verifying the servlet and full distributions : 1) bin/product.conf exists 2) bin/product.conf has slot correctly set 3) jboss-modules.jar must exist 4) standalone/configuration/standalone.xml must exist 5) modules/system/layers/base/org/jboss/as/product/eap/dir/META-INF/MANIFEST.MF exists 6) JBoss-Product-Release-Name key in manifest.mf above has correct value 7) JBoss-Product-Release-Version key in manifest.mf has correct value
- Loading branch information
Showing
5 changed files
with
193 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright 2017 JBoss by Red Hat. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<verifications xmlns="http://maven.apache.org/verifications/1.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/verifications/1.0.0 http://maven.apache.org/xsd/verifications-1.0.0.xsd"> | ||
<!-- | ||
1) bin/product.conf exists | ||
2) bin/product.conf has slot = "wildfly-full" | ||
3) jboss-modules.jar must exist | ||
4) standalone/configuration/standalone.xml must exist | ||
5) modules/system/layers/base/org/jboss/as/product/wildfly-full/dir/META-INF/MANIFEST.MF exists | ||
6) JBoss-Product-Release-Name key in manifest.mf above has value "WildFly Full" | ||
7) JBoss-Product-Release-Version key in manifest.mf has value starting with "11.0" | ||
--> | ||
<files> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-${project.version}/bin/product.conf</location> | ||
<exists>true</exists> | ||
</file> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-${project.version}/bin/product.conf</location> | ||
<contains>slot=${verifier.slot.name}</contains> | ||
</file> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-${project.version}/modules/system/layers/base/org/jboss/as/product/${verifier.slot.name}/dir/META-INF/MANIFEST.MF</location> | ||
<exists>true</exists> | ||
</file> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-${project.version}/modules/system/layers/base/org/jboss/as/product/${verifier.slot.name}/dir/META-INF/MANIFEST.MF</location> | ||
<contains>JBoss-Product-Release-Name: ${verifier.product.release.name}</contains> | ||
</file> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-${project.version}/modules/system/layers/base/org/jboss/as/product/${verifier.slot.name}/dir/META-INF/MANIFEST.MF</location> | ||
<contains>JBoss-Product-Release-Version: ${verifier.product.release.version}</contains> | ||
</file> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-${project.version}/jboss-modules.jar</location> | ||
<exists>true</exists> | ||
</file> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-${project.version}/standalone/configuration/standalone.xml</location> | ||
<exists>true</exists> | ||
</file> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-${project.version}/modules/system/layers/base/org/jboss/as/server/main/wildfly-server-${version.org.wildfly.core}.jar</location> | ||
<exists>true</exists> | ||
</file> | ||
</files> | ||
</verifications> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright 2017 JBoss by Red Hat. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<verifications xmlns="http://maven.apache.org/verifications/1.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/verifications/1.0.0 http://maven.apache.org/xsd/verifications-1.0.0.xsd"> | ||
<!-- | ||
1) bin/product.conf exists | ||
2) bin/product.conf has slot = "wildfly-web" | ||
3) jboss-modules.jar must exist | ||
4) standalone/configuration/standalone.xml must exist | ||
5) modules/system/layers/base/org/jboss/as/product/wildfly-web/dir/META-INF/MANIFEST.MF exists | ||
6) JBoss-Product-Release-Name key in manifest.mf above has value "WildFly Servlet" | ||
7) JBoss-Product-Release-Version key in manifest.mf has value starting with "11.0" | ||
--> | ||
<files> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-servlet-${project.version}/bin/product.conf</location> | ||
<exists>true</exists> | ||
</file> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-servlet-${project.version}/bin/product.conf</location> | ||
<contains>slot=${verifier.slot.name}</contains> | ||
</file> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-servlet-${project.version}/modules/system/layers/base/org/jboss/as/product/${verifier.slot.name}/dir/META-INF/MANIFEST.MF</location> | ||
<exists>true</exists> | ||
</file> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-servlet-${project.version}/modules/system/layers/base/org/jboss/as/product/${verifier.slot.name}/dir/META-INF/MANIFEST.MF</location> | ||
<contains>JBoss-Product-Release-Name: ${verifier.product.release.name}</contains> | ||
</file> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-servlet-${project.version}/modules/system/layers/base/org/jboss/as/product/${verifier.slot.name}/dir/META-INF/MANIFEST.MF</location> | ||
<contains>JBoss-Product-Release-Version: ${verifier.product.release.version}</contains> | ||
</file> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-servlet-${project.version}/jboss-modules.jar</location> | ||
<exists>true</exists> | ||
</file> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-servlet-${project.version}/standalone/configuration/standalone.xml</location> | ||
<exists>true</exists> | ||
</file> | ||
<file> | ||
<location>target/${server.output.dir.prefix}-servlet-${project.version}/modules/system/layers/base/org/jboss/as/server/main/wildfly-server-${version.org.wildfly.core}.jar</location> | ||
<exists>true</exists> | ||
</file> | ||
</files> | ||
</verifications> |