[JBoss JIRA] (JBIDE-16350) Cleanup: move databinding utils to commons
by Andre Dietisheim (JIRA)
Andre Dietisheim created JBIDE-16350:
----------------------------------------
Summary: Cleanup: move databinding utils to commons
Key: JBIDE-16350
URL: https://issues.jboss.org/browse/JBIDE-16350
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: openshift
Affects Versions: 4.2.0.Alpha1
Reporter: Andre Dietisheim
Assignee: Andre Dietisheim
Fix For: 4.2.0.Alpha2
There are databinding utils in OpenShift that should be moved to commons.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 2 months
[JBoss JIRA] (JBIDE-16341) WAR resource filtering not working in Eclipse 4.3.1 and JBoss Tools 4.1.1
by Esteve Aviles (JIRA)
[ https://issues.jboss.org/browse/JBIDE-16341?page=com.atlassian.jira.plugi... ]
Esteve Aviles resolved JBIDE-16341.
-----------------------------------
Fix Version/s: 4.1.1.Final
4.1.0.1.Final
Resolution: Rejected
Perfect. It works fine.
> WAR resource filtering not working in Eclipse 4.3.1 and JBoss Tools 4.1.1
> -------------------------------------------------------------------------
>
> Key: JBIDE-16341
> URL: https://issues.jboss.org/browse/JBIDE-16341
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: maven
> Affects Versions: 4.1.1.Final
> Environment: Linux, Eclipse 4.3.1, JBossTools 4.1.1, Maven 3.1.1.
> Reporter: Esteve Aviles
> Priority: Minor
> Labels: filtering, resource, war
> Fix For: 4.1.1.Final, 4.1.0.1.Final
>
>
> i,
>
> I work in a project where web.xml content must be filtered depending on maven profiles. I have configured pom.xml as follows but Eclipse doesn't process filtering for web.xml when deploying the app to the server through Full Publish from Servers Tab.
>
> <plugin>
> <artifactId>maven-war-plugin</artifactId>
> <version>2.4</version>
> <configuration>
> <failOnMissingWebXml>false</failOnMissingWebXml>
> <webResources>
> <resource>
> <filtering>true</filtering>
> <directory>src/main/webapp</directory>
> <includes>
> <include>**/web.xml</include>
> </includes>
> </resource>
> </webResources>
> <warSourceDirectory>src/main/webapp</warSourceDirectory>
> <webXml>src/main/webapp/WEB-INF/web.xml</webXml>
> </configuration>
> </plugin>
>
> Environment: Eclipse Kepler 4.3.1, JBoss Tools 4.1.1, JBossAS7.1 and Maven 3.1.1.
> If I build the project with maven package everything is working fine.
>
> You can clone this Git repository to test it: esteveavi/forge-test · GitHub
>
> Can anyone check if you have the same problem?
>
> Thanks in advance.
>
> Regards.
> Esteve
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 2 months
[JBoss JIRA] (JBIDE-16214) Code Coverage jobs needs to have locally available measured plugins
by Mickael Istria (JIRA)
[ https://issues.jboss.org/browse/JBIDE-16214?page=com.atlassian.jira.plugi... ]
Mickael Istria commented on JBIDE-16214:
----------------------------------------
This kind of exception happens when multiple jars provide a class. Ideally, this should never happen. Can you please describe which component should I use (common I guess) and which mvn command you did run to get it. I'll check whether this is a scirpt issue of a jar issue.
> But anyways we need code coverage report generated by jacoco jenkins plugins
Do you use this jacoco jenkins plugin? In the jenkins.eng.mw.redhat.com instance, we don't use the plugin. Instead we rely on the script to create HTML reports and link them.
Do you use Sonar for coverage as well?
There are many ways to consume coverage report, and I don't think it's necessary to keep all of them (too much work, no added-value). Which one(s) do you actually use currently? I'll make efforts on those.
> Code Coverage jobs needs to have locally available measured plugins
> -------------------------------------------------------------------
>
> Key: JBIDE-16214
> URL: https://issues.jboss.org/browse/JBIDE-16214
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: build
> Affects Versions: 4.1.1.CR1
> Reporter: Vlado Pakan
> Assignee: Mickael Istria
> Fix For: 4.1.x
>
>
> Code Coverage calculating via maven build returns 0% coverage because it's using source code and binary plugins installed from update site.
> When these are built locally prior to build calculating code coverage it returns correct results.
> Unfortunately sometimes maven build used plugins installed from update site instead of those which are locally build.
> We need to find way how to fix this.
> It's already reported here https://bugs.eclipse.org/bugs/show_bug.cgi?id=352560
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 2 months
[JBoss JIRA] (JBIDE-16341) WAR resource filtering not working in Eclipse 4.3.1 and JBoss Tools 4.1.1
by Fred Bricon (JIRA)
[ https://issues.jboss.org/browse/JBIDE-16341?page=com.atlassian.jira.plugi... ]
Fred Bricon commented on JBIDE-16341:
-------------------------------------
Ok so the problem is, after you removed <webXml>src/main/webapp/WEB-INF/web.xml</webXml>, your project's .settings/org.eclipse.wst.common.component still contains the following entry :
{quote}
<wb-resource deploy-path="/WEB-INF/web.xml" source-path="/src/main/webapp/WEB-INF/web.xml"/>
{quote}
This line must be deleted. Then you can clean deploy your project.
If you delete .classpath, .project and .settings/ before importing your project in eclipse, the offending line will be missing.
> WAR resource filtering not working in Eclipse 4.3.1 and JBoss Tools 4.1.1
> -------------------------------------------------------------------------
>
> Key: JBIDE-16341
> URL: https://issues.jboss.org/browse/JBIDE-16341
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: maven
> Affects Versions: 4.1.1.Final
> Environment: Linux, Eclipse 4.3.1, JBossTools 4.1.1, Maven 3.1.1.
> Reporter: Esteve Aviles
> Priority: Minor
> Labels: filtering, resource, war
>
> i,
>
> I work in a project where web.xml content must be filtered depending on maven profiles. I have configured pom.xml as follows but Eclipse doesn't process filtering for web.xml when deploying the app to the server through Full Publish from Servers Tab.
>
> <plugin>
> <artifactId>maven-war-plugin</artifactId>
> <version>2.4</version>
> <configuration>
> <failOnMissingWebXml>false</failOnMissingWebXml>
> <webResources>
> <resource>
> <filtering>true</filtering>
> <directory>src/main/webapp</directory>
> <includes>
> <include>**/web.xml</include>
> </includes>
> </resource>
> </webResources>
> <warSourceDirectory>src/main/webapp</warSourceDirectory>
> <webXml>src/main/webapp/WEB-INF/web.xml</webXml>
> </configuration>
> </plugin>
>
> Environment: Eclipse Kepler 4.3.1, JBoss Tools 4.1.1, JBossAS7.1 and Maven 3.1.1.
> If I build the project with maven package everything is working fine.
>
> You can clone this Git repository to test it: esteveavi/forge-test · GitHub
>
> Can anyone check if you have the same problem?
>
> Thanks in advance.
>
> Regards.
> Esteve
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 2 months
[JBoss JIRA] (JBIDE-16349) Wizards for new Wildfly 8 server/runtime show "JBoss Application Server 8.0"
by Fred Bricon (JIRA)
[ https://issues.jboss.org/browse/JBIDE-16349?page=com.atlassian.jira.plugi... ]
Fred Bricon updated JBIDE-16349:
--------------------------------
Description:
If you create a new Wildfly 8 runtime or a new server, the description in the wizard page says "JBoss Application Server 8.0"
!wildfly-wizard.png!
was:If you create a new Wildfly 8 runtime or a new server, the description in the wizard page says "JBoss Application Server 8.0"
> Wizards for new Wildfly 8 server/runtime show "JBoss Application Server 8.0"
> ----------------------------------------------------------------------------
>
> Key: JBIDE-16349
> URL: https://issues.jboss.org/browse/JBIDE-16349
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: server
> Affects Versions: 4.1.1.Final
> Environment: Kepler SR1 + JBoss AS Tools 2.4.101.Final-v20131206-1843-B159 (installed from WTP's download runtime feature)
> Reporter: Fred Bricon
> Attachments: wildfly-wizard.png
>
>
> If you create a new Wildfly 8 runtime or a new server, the description in the wizard page says "JBoss Application Server 8.0"
> !wildfly-wizard.png!
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 2 months