[JBoss JIRA] (ROASTER-44) Support writing of nested annotation arrays
by George Gastaldi (JIRA)
[ https://issues.jboss.org/browse/ROASTER-44?page=com.atlassian.jira.plugin... ]
George Gastaldi closed ROASTER-44.
----------------------------------
Good job!
> Support writing of nested annotation arrays
> -------------------------------------------
>
> Key: ROASTER-44
> URL: https://issues.jboss.org/browse/ROASTER-44
> Project: Roaster
> Issue Type: Feature Request
> Components: API, JDT
> Affects Versions: 2.9.0.Final
> Reporter: George Gastaldi
> Assignee: Matt Benson
> Fix For: 2.x Future
>
>
> Roaster should allow annotation nesting, like:
> {code}
> @NamedQueries({
> @NamedQuery(name="Customer.findAll", query="select C from Customer C"),
> @NamedQuery(name="Customer.findByName", query="select C from Customer C where C.name = :name"),
> @NamedQuery(name="Customer.findById", query="select C from Customer C where C.id = :id")
> })
> @Entity
> public class Customer {...}
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
10 years, 1 month
[JBoss JIRA] (ROASTER-44) Support writing of nested annotation arrays
by Matt Benson (JIRA)
[ https://issues.jboss.org/browse/ROASTER-44?page=com.atlassian.jira.plugin... ]
Matt Benson reassigned ROASTER-44:
----------------------------------
Assignee: Matt Benson
> Support writing of nested annotation arrays
> -------------------------------------------
>
> Key: ROASTER-44
> URL: https://issues.jboss.org/browse/ROASTER-44
> Project: Roaster
> Issue Type: Feature Request
> Components: API, JDT
> Affects Versions: 2.9.0.Final
> Reporter: George Gastaldi
> Assignee: Matt Benson
> Fix For: 2.x Future
>
>
> Roaster should allow annotation nesting, like:
> {code}
> @NamedQueries({
> @NamedQuery(name="Customer.findAll", query="select C from Customer C"),
> @NamedQuery(name="Customer.findByName", query="select C from Customer C where C.name = :name"),
> @NamedQuery(name="Customer.findById", query="select C from Customer C where C.id = :id")
> })
> @Entity
> public class Customer {...}
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
10 years, 1 month
[JBoss JIRA] (FORGEPLUGINS-177) Run tests against WildFly on OpenShift
by Arun Gupta (JIRA)
[ https://issues.jboss.org/browse/FORGEPLUGINS-177?page=com.atlassian.jira.... ]
Arun Gupta updated FORGEPLUGINS-177:
------------------------------------
Description:
For using WildFly running on OpenShift, the dependencies look like ...
{code}
<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-openshift</artifactId>
<version>1.0.0.Final-SNAPSHOT</version>
<scope>test</scope>
</dependency>
{code}
but this adapter is not shown in arquillian-addon extension.
I had to manually add the following code in pom.xml:
{code}
<profile>
<id>arquillian-wildfly-openshift</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.14.1</version>
<configuration>
<systemPropertyVariables>
<arquillian.launch>arquillian-wildfly-openshift</arquillian.launch>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-openshift</artifactId>
<version>1.0.0.Final-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>3.0.5.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxb-provider</artifactId>
<version>3.0.5.Final</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
{code}
and the following in arquillian.xml
{code}
<container qualifier="arquillian-wildfly-openshift">
<configuration>
<property name="namespace">milestogo</property>
<property name="application">cd</property>
<property name="libraDomain">rhcloud.com</property>
<property name="sshUserName">54686b2aecb8d46aa0000052</property>
<property name="login">arungupta(a)redhat.com</property>
<property name="deploymentTimeoutInSeconds">300</property>
<property name="disableStrictHostChecking">true</property>
</configuration>
</container>
{code}
It'll be great if the addon can show an option to add this adapter and update the files accordingly.
All the tests passed successfully after adding these fragments.
was:
For using WildFly running on OpenShift, the dependencies look like ...
<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-openshift</artifactId>
<version>1.0.0.Final-SNAPSHOT</version>
<scope>test</scope>
</dependency>
but this adapter is not shown in arquillian-addon extension.
I had to manually add the following code in pom.xml:
<profile>
<id>arquillian-wildfly-openshift</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.14.1</version>
<configuration>
<systemPropertyVariables>
<arquillian.launch>arquillian-wildfly-openshift</arquillian.launch>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-openshift</artifactId>
<version>1.0.0.Final-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>3.0.5.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxb-provider</artifactId>
<version>3.0.5.Final</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
and the following in arquillian.xml
<container qualifier="arquillian-wildfly-openshift">
<configuration>
<property name="namespace">milestogo</property>
<property name="application">cd</property>
<property name="libraDomain">rhcloud.com</property>
<property name="sshUserName">54686b2aecb8d46aa0000052</property>
<property name="login">arungupta(a)redhat.com</property>
<property name="deploymentTimeoutInSeconds">300</property>
<property name="disableStrictHostChecking">true</property>
</configuration>
</container>
It'll be great if the addon can automate this.
All the tests passed successfully after adding these fragments.
> Run tests against WildFly on OpenShift
> --------------------------------------
>
> Key: FORGEPLUGINS-177
> URL: https://issues.jboss.org/browse/FORGEPLUGINS-177
> Project: Forge Plugins/Addons
> Issue Type: Feature Request
> Reporter: Arun Gupta
>
> For using WildFly running on OpenShift, the dependencies look like ...
> {code}
> <dependency>
> <groupId>org.jboss.arquillian.container</groupId>
> <artifactId>arquillian-openshift</artifactId>
> <version>1.0.0.Final-SNAPSHOT</version>
> <scope>test</scope>
> </dependency>
> {code}
> but this adapter is not shown in arquillian-addon extension.
> I had to manually add the following code in pom.xml:
> {code}
> <profile>
> <id>arquillian-wildfly-openshift</id>
> <build>
> <plugins>
> <plugin>
> <artifactId>maven-surefire-plugin</artifactId>
> <version>2.14.1</version>
> <configuration>
> <systemPropertyVariables>
> <arquillian.launch>arquillian-wildfly-openshift</arquillian.launch>
> </systemPropertyVariables>
> </configuration>
> </plugin>
> </plugins>
> </build>
> <dependencies>
> <dependency>
> <groupId>org.jboss.arquillian.container</groupId>
> <artifactId>arquillian-openshift</artifactId>
> <version>1.0.0.Final-SNAPSHOT</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.resteasy</groupId>
> <artifactId>resteasy-client</artifactId>
> <version>3.0.5.Final</version>
> <scope>test</scope>
> </dependency>
> <dependency>
> <groupId>org.jboss.resteasy</groupId>
> <artifactId>resteasy-jaxb-provider</artifactId>
> <version>3.0.5.Final</version>
> <scope>test</scope>
> </dependency>
> </dependencies>
> </profile>
> {code}
> and the following in arquillian.xml
> {code}
> <container qualifier="arquillian-wildfly-openshift">
> <configuration>
> <property name="namespace">milestogo</property>
> <property name="application">cd</property>
> <property name="libraDomain">rhcloud.com</property>
> <property name="sshUserName">54686b2aecb8d46aa0000052</property>
> <property name="login">arungupta(a)redhat.com</property>
> <property name="deploymentTimeoutInSeconds">300</property>
> <property name="disableStrictHostChecking">true</property>
> </configuration>
> </container>
> {code}
> It'll be great if the addon can show an option to add this adapter and update the files accordingly.
> All the tests passed successfully after adding these fragments.
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
10 years, 2 months
[JBoss JIRA] (FORGEPLUGINS-177) Run tests against WildFly on OpenShift
by Arun Gupta (JIRA)
Arun Gupta created FORGEPLUGINS-177:
---------------------------------------
Summary: Run tests against WildFly on OpenShift
Key: FORGEPLUGINS-177
URL: https://issues.jboss.org/browse/FORGEPLUGINS-177
Project: Forge Plugins/Addons
Issue Type: Feature Request
Reporter: Arun Gupta
For using WildFly running on OpenShift, the dependencies look like ...
<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-openshift</artifactId>
<version>1.0.0.Final-SNAPSHOT</version>
<scope>test</scope>
</dependency>
but this adapter is not shown in arquillian-addon extension.
I had to manually add the following code in pom.xml:
<profile>
<id>arquillian-wildfly-openshift</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.14.1</version>
<configuration>
<systemPropertyVariables>
<arquillian.launch>arquillian-wildfly-openshift</arquillian.launch>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-openshift</artifactId>
<version>1.0.0.Final-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>3.0.5.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxb-provider</artifactId>
<version>3.0.5.Final</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
and the following in arquillian.xml
<container qualifier="arquillian-wildfly-openshift">
<configuration>
<property name="namespace">milestogo</property>
<property name="application">cd</property>
<property name="libraDomain">rhcloud.com</property>
<property name="sshUserName">54686b2aecb8d46aa0000052</property>
<property name="login">arungupta(a)redhat.com</property>
<property name="deploymentTimeoutInSeconds">300</property>
<property name="disableStrictHostChecking">true</property>
</configuration>
</container>
It'll be great if the addon can automate this.
All the tests passed successfully after adding these fragments.
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
10 years, 2 months