[JBoss JIRA] (JBIDE-23161) Update bundled and website schema with wf10.1 schema
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-23161?page=com.atlassian.jira.plugi... ]
Rob Stryker updated JBIDE-23161:
--------------------------------
Description:
WildFly 10.1 is released, so two tasks need to be done.
1) Make a pull request to https://github.com/robstryker/jboss.org.schema with schema changes
2) Make a pull request to https://github.com/jbosstools/jbosstools-server/tree/master/as/plugins/or... with schema changes
{code}
# Check out repos and DL new app server
wget http://download.jboss.org/wildfly/10.1.0.Final/wildfly-10.1.0.Final.zip
unzip wildfly-10.1.0.Final.zip
git clone https://github.com/robstryker/jboss.org.schema
git clone https://github.com/jbosstools/jbosstools-server
tmpdir=`pwd`
echo $tmpdir
# Build the catalog plugin
cd jbosstools-server/as/plugins/org.jboss.tools.as.catalog/
mvn clean verify -DskipTests
cd target/classes/
echo "$tmpdir/wildfly-10.1.0.Final/docs/schema"
# Copy new or modified schema into the jboss.org.schema repo
java org.jboss.tools.as.catalog.internal.CopyReleasedSchemaToJBossOrg \
"$tmpdir/wildfly-10.1.0.Final/docs/schema" \
"$tmpdir/jboss.org.schema/schema_htdocs" jbossas
# Copy new or modified schema into the catalog schema folder
java org.jboss.tools.as.catalog.internal.CopyReleasedSchemaToJBossOrg \
"$tmpdir/wildfly-10.1.0.Final/docs/schema" \
"$tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog/schema" xsd
# Commit the changes to jboss.org.schema repo
cd $tmpdir/jboss.org.schema/schema_htdocs
git checkout -b wildfly101schema
git add -A
git commit -a -m "Update schema from WildFly 10.1.0 Final"
# TODO ACTION REQUIRED, push to your own repo and initiate pull request
cd $tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog/target/classes/
git checkout -b wildfly101schema
# Update plugin.xml for catalog
java -Dplugin.root.dir=$tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog/ \
-Doutput.mode=generateCatalog\
org.jboss.tools.as.catalog.internal.GeneratePluginXmlCatalog > $tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog/plugin.xml
git add -A
git commit -a -m "Update schema from WildFly 10.1.0 Final"
# run a build to verify it works
cd $tmpdir/jbosstools-server
mvn clean install -DskipTests
# Now run CatalogValidationTest manually
{code}
was:
WildFly 10.1 is released, so two tasks need to be done.
1) Make a pull request to https://github.com/robstryker/jboss.org.schema with schema changes
2) Make a pull request to https://github.com/jbosstools/jbosstools-server/tree/master/as/plugins/or... with schema changes
{code}
# Check out repos and DL new app server
wget http://download.jboss.org/wildfly/10.1.0.Final/wildfly-10.1.0.Final.zip
unzip wildfly-10.1.0.Final.zip
git clone https://github.com/robstryker/jboss.org.schema
git clone https://github.com/jbosstools/jbosstools-server
tmpdir=`pwd`
echo $tmpdir
# Build the catalog plugin
cd jbosstools-server/as/plugins/org.jboss.tools.as.catalog/
mvn clean verify -DskipTests
cd target/classes/
echo "$tmpdir/wildfly-10.1.0.Final/docs/schema"
# Copy new or modified schema into the jboss.org.schema repo
java org.jboss.tools.as.catalog.internal.CopyReleasedSchemaToJBossOrg \
"$tmpdir/wildfly-10.1.0.Final/docs/schema" \
"$tmpdir/jboss.org.schema/schema_htdocs" jbossas
# Copy new or modified schema into the catalog schema folder
java org.jboss.tools.as.catalog.internal.CopyReleasedSchemaToJBossOrg \
"$tmpdir/wildfly-10.1.0.Final/docs/schema" \
"$tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog/schema" xsd
# Commit the changes to jboss.org.schema repo
cd $tmpdir/jboss.org.schema/schema_htdocs
git checkout -b wildfly101schema
git add -A
git commit -a -m "Update schema from WildFly 10.1.0 Final"
# TODO ACTION REQUIRED, push to your own repo and initiate pull request
cd $tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog
git checkout -b wildfly101schema
# Update plugin.xml for catalog
java -Dplugin.root.dir=$tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog/ \
-Doutput.mode=generateCatalog\
org.jboss.tools.as.catalog.internal.GeneratePluginXmlCatalog > $tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog/plugin.xml
git add -A
git commit -a -m "Update schema from WildFly 10.1.0 Final"
{code}
> Update bundled and website schema with wf10.1 schema
> ----------------------------------------------------
>
> Key: JBIDE-23161
> URL: https://issues.jboss.org/browse/JBIDE-23161
> Project: Tools (JBoss Tools)
> Issue Type: Task
> Components: server
> Affects Versions: 4.4.2.AM1
> Reporter: Rob Stryker
>
> WildFly 10.1 is released, so two tasks need to be done.
> 1) Make a pull request to https://github.com/robstryker/jboss.org.schema with schema changes
> 2) Make a pull request to https://github.com/jbosstools/jbosstools-server/tree/master/as/plugins/or... with schema changes
> {code}
> # Check out repos and DL new app server
> wget http://download.jboss.org/wildfly/10.1.0.Final/wildfly-10.1.0.Final.zip
> unzip wildfly-10.1.0.Final.zip
> git clone https://github.com/robstryker/jboss.org.schema
> git clone https://github.com/jbosstools/jbosstools-server
> tmpdir=`pwd`
> echo $tmpdir
> # Build the catalog plugin
> cd jbosstools-server/as/plugins/org.jboss.tools.as.catalog/
> mvn clean verify -DskipTests
> cd target/classes/
> echo "$tmpdir/wildfly-10.1.0.Final/docs/schema"
> # Copy new or modified schema into the jboss.org.schema repo
> java org.jboss.tools.as.catalog.internal.CopyReleasedSchemaToJBossOrg \
> "$tmpdir/wildfly-10.1.0.Final/docs/schema" \
> "$tmpdir/jboss.org.schema/schema_htdocs" jbossas
> # Copy new or modified schema into the catalog schema folder
> java org.jboss.tools.as.catalog.internal.CopyReleasedSchemaToJBossOrg \
> "$tmpdir/wildfly-10.1.0.Final/docs/schema" \
> "$tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog/schema" xsd
> # Commit the changes to jboss.org.schema repo
> cd $tmpdir/jboss.org.schema/schema_htdocs
> git checkout -b wildfly101schema
> git add -A
> git commit -a -m "Update schema from WildFly 10.1.0 Final"
> # TODO ACTION REQUIRED, push to your own repo and initiate pull request
> cd $tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog/target/classes/
> git checkout -b wildfly101schema
> # Update plugin.xml for catalog
> java -Dplugin.root.dir=$tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog/ \
> -Doutput.mode=generateCatalog\
> org.jboss.tools.as.catalog.internal.GeneratePluginXmlCatalog > $tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog/plugin.xml
> git add -A
> git commit -a -m "Update schema from WildFly 10.1.0 Final"
> # run a build to verify it works
> cd $tmpdir/jbosstools-server
> mvn clean install -DskipTests
> # Now run CatalogValidationTest manually
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 7 months
[JBoss JIRA] (JBIDE-23161) Update bundled and website schema with wf10.1 schema
by Rob Stryker (JIRA)
Rob Stryker created JBIDE-23161:
-----------------------------------
Summary: Update bundled and website schema with wf10.1 schema
Key: JBIDE-23161
URL: https://issues.jboss.org/browse/JBIDE-23161
Project: Tools (JBoss Tools)
Issue Type: Task
Components: server
Affects Versions: 4.4.2.AM1
Reporter: Rob Stryker
WildFly 10.1 is released, so two tasks need to be done.
1) Make a pull request to https://github.com/robstryker/jboss.org.schema with schema changes
2) Make a pull request to https://github.com/jbosstools/jbosstools-server/tree/master/as/plugins/or... with schema changes
{code}
# Check out repos and DL new app server
wget http://download.jboss.org/wildfly/10.1.0.Final/wildfly-10.1.0.Final.zip
unzip wildfly-10.1.0.Final.zip
git clone https://github.com/robstryker/jboss.org.schema
git clone https://github.com/jbosstools/jbosstools-server
tmpdir=`pwd`
echo $tmpdir
# Build the catalog plugin
cd jbosstools-server/as/plugins/org.jboss.tools.as.catalog/
mvn clean verify -DskipTests
cd target/classes/
echo "$tmpdir/wildfly-10.1.0.Final/docs/schema"
# Copy new or modified schema into the jboss.org.schema repo
java org.jboss.tools.as.catalog.internal.CopyReleasedSchemaToJBossOrg \
"$tmpdir/wildfly-10.1.0.Final/docs/schema" \
"$tmpdir/jboss.org.schema/schema_htdocs" jbossas
# Copy new or modified schema into the catalog schema folder
java org.jboss.tools.as.catalog.internal.CopyReleasedSchemaToJBossOrg \
"$tmpdir/wildfly-10.1.0.Final/docs/schema" \
"$tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog/schema" xsd
# Commit the changes to jboss.org.schema repo
cd $tmpdir/jboss.org.schema/schema_htdocs
git checkout -b wildfly101schema
git add -A
git commit -a -m "Update schema from WildFly 10.1.0 Final"
# TODO ACTION REQUIRED, push to your own repo and initiate pull request
cd $tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog
git checkout -b wildfly101schema
# Update plugin.xml for catalog
java -Dplugin.root.dir=$tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog/ \
-Doutput.mode=generateCatalog\
org.jboss.tools.as.catalog.internal.GeneratePluginXmlCatalog > $tmpdir/jbosstools-server/as/plugins/org.jboss.tools.as.catalog/plugin.xml
git add -A
git commit -a -m "Update schema from WildFly 10.1.0 Final"
{code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 7 months
[JBoss JIRA] (JBIDE-23160) Update m2e-wtp and m2eclipse-tycho in jbosstools-multiple (4.60.2)
by Paul Leacu (JIRA)
Paul Leacu created JBIDE-23160:
----------------------------------
Summary: Update m2e-wtp and m2eclipse-tycho in jbosstools-multiple (4.60.2)
Key: JBIDE-23160
URL: https://issues.jboss.org/browse/JBIDE-23160
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: target-platform
Affects Versions: 4.4.1.AM3
Reporter: Paul Leacu
The 1.3.1 version of m2e-wtp has been mirrored as well as the 0.9.0 version of m2eclipse-tycho. Please update in jbosstools-multiple for Neon. Also - please change https -> http for the locus update site URL reference.
{code}
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
<unit id="org.eclipse.m2e.wtp.feature.feature.group" version="1.3.1.20160831-1005"/>
<unit id="org.eclipse.m2e.wtp.jaxrs.feature.feature.group" version="1.3.1.20160831-1005"/>
<unit id="org.eclipse.m2e.wtp.jpa.feature.feature.group" version="1.3.1.20160831-1005"/>
<unit id="org.eclipse.m2e.wtp.jsf.feature.feature.group" version="1.3.1.20160831-1005"/>
<repository location="http://download.jboss.org/jbosstools/updates/requirements/m2e-wtp/1.3.1.2..."/>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
<unit id="org.sonatype.tycho.m2e.feature.feature.group" version="0.9.0.201609061714"/>
<repository location="http://download.jboss.org/jbosstools/updates/requirements/m2eclipse-tycho..."/>
</location>
{code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 7 months
[JBoss JIRA] (JBIDE-23160) Update m2e-wtp and m2eclipse-tycho in jbosstools-multiple (4.60.2)
by Paul Leacu (JIRA)
[ https://issues.jboss.org/browse/JBIDE-23160?page=com.atlassian.jira.plugi... ]
Paul Leacu reassigned JBIDE-23160:
----------------------------------
Assignee: Nick Boldt
> Update m2e-wtp and m2eclipse-tycho in jbosstools-multiple (4.60.2)
> ------------------------------------------------------------------
>
> Key: JBIDE-23160
> URL: https://issues.jboss.org/browse/JBIDE-23160
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: target-platform
> Affects Versions: 4.4.1.AM3
> Reporter: Paul Leacu
> Assignee: Nick Boldt
>
> The 1.3.1 version of m2e-wtp has been mirrored as well as the 0.9.0 version of m2eclipse-tycho. Please update in jbosstools-multiple for Neon. Also - please change https -> http for the locus update site URL reference.
> {code}
> <location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
> <unit id="org.eclipse.m2e.wtp.feature.feature.group" version="1.3.1.20160831-1005"/>
> <unit id="org.eclipse.m2e.wtp.jaxrs.feature.feature.group" version="1.3.1.20160831-1005"/>
> <unit id="org.eclipse.m2e.wtp.jpa.feature.feature.group" version="1.3.1.20160831-1005"/>
> <unit id="org.eclipse.m2e.wtp.jsf.feature.feature.group" version="1.3.1.20160831-1005"/>
> <repository location="http://download.jboss.org/jbosstools/updates/requirements/m2e-wtp/1.3.1.2..."/>
> </location>
> <location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
> <unit id="org.sonatype.tycho.m2e.feature.feature.group" version="0.9.0.201609061714"/>
> <repository location="http://download.jboss.org/jbosstools/updates/requirements/m2eclipse-tycho..."/>
> </location>
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 7 months