You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@deltaspike.apache.org by Mark Struberg <st...@yahoo.de> on 2013/02/17 08:41:29 UTC

Re: git commit: DELTASPIKE-113 added profile

hmm why is this only needed in the jpa module?
Javassist is an implicit part of all the Weld profile. It should be in the parent poms Weld profile, isn't?

LieGrue,
strub




----- Original Message -----
> From: "gpetracek@apache.org" <gp...@apache.org>
> To: deltaspike-commits@incubator.apache.org
> Cc: 
> Sent: Sunday, February 17, 2013 7:37 AM
> Subject: git commit: DELTASPIKE-113 added profile
> 
> Updated Branches:
>   refs/heads/master 357a6d35a -> fa8ed3c6d
> 
> 
> DELTASPIKE-113 added profile
> 
> 
> Project: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/repo
> Commit: 
> http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/commit/fa8ed3c6
> Tree: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/tree/fa8ed3c6
> Diff: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/diff/fa8ed3c6
> 
> Branch: refs/heads/master
> Commit: fa8ed3c6d1bf6e7a3e53103b1b439d463db0072b
> Parents: 357a6d3
> Author: gpetracek <gp...@apache.org>
> Authored: Sun Feb 17 07:32:37 2013 +0100
> Committer: gpetracek <gp...@apache.org>
> Committed: Sun Feb 17 07:32:37 2013 +0100
> 
> ----------------------------------------------------------------------
> deltaspike/modules/jpa/impl/pom.xml      |   19 +++++++++++++------
> deltaspike/modules/security/impl/pom.xml |   18 ++++++++++++------
> 2 files changed, 25 insertions(+), 12 deletions(-)
> ----------------------------------------------------------------------
> 
> 
> http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/fa8ed3c6/deltaspike/modules/jpa/impl/pom.xml
> ----------------------------------------------------------------------
> diff --git a/deltaspike/modules/jpa/impl/pom.xml 
> b/deltaspike/modules/jpa/impl/pom.xml
> index 5a22dd9..e482e82 100644
> --- a/deltaspike/modules/jpa/impl/pom.xml
> +++ b/deltaspike/modules/jpa/impl/pom.xml
> @@ -64,14 +64,21 @@
>              <groupId>org.apache.geronimo.specs</groupId>
>              <artifactId>geronimo-jta_1.1_spec</artifactId>
>          </dependency>
> -
> -        <dependency>
> -            <groupId>javassist</groupId>
> -            <artifactId>javassist</artifactId>
> -            <scope>test</scope>
> -        </dependency>
>      </dependencies>
> 
> +    <profiles>
> +        <profile>
> +            <id>Weld</id>
> +            <dependencies>
> +                <dependency>
> +                    <groupId>javassist</groupId>
> +                    <artifactId>javassist</artifactId>
> +                    <scope>test</scope>
> +                </dependency>
> +            </dependencies>
> +        </profile>
> +    </profiles>
> +
>      <build>
>          <plugins>
>              <plugin>
> 
> http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/fa8ed3c6/deltaspike/modules/security/impl/pom.xml
> ----------------------------------------------------------------------
> diff --git a/deltaspike/modules/security/impl/pom.xml 
> b/deltaspike/modules/security/impl/pom.xml
> index 86a21b7..cb275e0 100644
> --- a/deltaspike/modules/security/impl/pom.xml
> +++ b/deltaspike/modules/security/impl/pom.xml
> @@ -51,12 +51,18 @@
>            <groupId>org.apache.geronimo.specs</groupId>
>            <artifactId>geronimo-jpa_2.0_spec</artifactId>
>          </dependency>
> -
> -        <dependency>
> -            <groupId>javassist</groupId>
> -            <artifactId>javassist</artifactId>
> -            <scope>test</scope>
> -        </dependency>
>      </dependencies>
> 
> +    <profiles>
> +        <profile>
> +            <id>Weld</id>
> +            <dependencies>
> +                <dependency>
> +                    <groupId>javassist</groupId>
> +                    <artifactId>javassist</artifactId>
> +                    <scope>test</scope>
> +                </dependency>
> +            </dependencies>
> +        </profile>
> +    </profiles>
> </project>
> 

Re: git commit: DELTASPIKE-113 added profile

Posted by Gerhard Petracek <ge...@gmail.com>.
it was just a test for the different jenkins builds (there are different
constellations...)

regards,
gerhard



2013/2/17 Mark Struberg <st...@yahoo.de>

> hmm why is this only needed in the jpa module?
> Javassist is an implicit part of all the Weld profile. It should be in the
> parent poms Weld profile, isn't?
>
> LieGrue,
> strub
>
>
>
>
> ----- Original Message -----
> > From: "gpetracek@apache.org" <gp...@apache.org>
> > To: deltaspike-commits@incubator.apache.org
> > Cc:
> > Sent: Sunday, February 17, 2013 7:37 AM
> > Subject: git commit: DELTASPIKE-113 added profile
> >
> > Updated Branches:
> >   refs/heads/master 357a6d35a -> fa8ed3c6d
> >
> >
> > DELTASPIKE-113 added profile
> >
> >
> > Project:
> http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/repo
> > Commit:
> >
> http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/commit/fa8ed3c6
> > Tree:
> http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/tree/fa8ed3c6
> > Diff:
> http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/diff/fa8ed3c6
> >
> > Branch: refs/heads/master
> > Commit: fa8ed3c6d1bf6e7a3e53103b1b439d463db0072b
> > Parents: 357a6d3
> > Author: gpetracek <gp...@apache.org>
> > Authored: Sun Feb 17 07:32:37 2013 +0100
> > Committer: gpetracek <gp...@apache.org>
> > Committed: Sun Feb 17 07:32:37 2013 +0100
> >
> > ----------------------------------------------------------------------
> > deltaspike/modules/jpa/impl/pom.xml      |   19 +++++++++++++------
> > deltaspike/modules/security/impl/pom.xml |   18 ++++++++++++------
> > 2 files changed, 25 insertions(+), 12 deletions(-)
> > ----------------------------------------------------------------------
> >
> >
> >
> http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/fa8ed3c6/deltaspike/modules/jpa/impl/pom.xml
> > ----------------------------------------------------------------------
> > diff --git a/deltaspike/modules/jpa/impl/pom.xml
> > b/deltaspike/modules/jpa/impl/pom.xml
> > index 5a22dd9..e482e82 100644
> > --- a/deltaspike/modules/jpa/impl/pom.xml
> > +++ b/deltaspike/modules/jpa/impl/pom.xml
> > @@ -64,14 +64,21 @@
> >              <groupId>org.apache.geronimo.specs</groupId>
> >              <artifactId>geronimo-jta_1.1_spec</artifactId>
> >          </dependency>
> > -
> > -        <dependency>
> > -            <groupId>javassist</groupId>
> > -            <artifactId>javassist</artifactId>
> > -            <scope>test</scope>
> > -        </dependency>
> >      </dependencies>
> >
> > +    <profiles>
> > +        <profile>
> > +            <id>Weld</id>
> > +            <dependencies>
> > +                <dependency>
> > +                    <groupId>javassist</groupId>
> > +                    <artifactId>javassist</artifactId>
> > +                    <scope>test</scope>
> > +                </dependency>
> > +            </dependencies>
> > +        </profile>
> > +    </profiles>
> > +
> >      <build>
> >          <plugins>
> >              <plugin>
> >
> >
> http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/fa8ed3c6/deltaspike/modules/security/impl/pom.xml
> > ----------------------------------------------------------------------
> > diff --git a/deltaspike/modules/security/impl/pom.xml
> > b/deltaspike/modules/security/impl/pom.xml
> > index 86a21b7..cb275e0 100644
> > --- a/deltaspike/modules/security/impl/pom.xml
> > +++ b/deltaspike/modules/security/impl/pom.xml
> > @@ -51,12 +51,18 @@
> >            <groupId>org.apache.geronimo.specs</groupId>
> >            <artifactId>geronimo-jpa_2.0_spec</artifactId>
> >          </dependency>
> > -
> > -        <dependency>
> > -            <groupId>javassist</groupId>
> > -            <artifactId>javassist</artifactId>
> > -            <scope>test</scope>
> > -        </dependency>
> >      </dependencies>
> >
> > +    <profiles>
> > +        <profile>
> > +            <id>Weld</id>
> > +            <dependencies>
> > +                <dependency>
> > +                    <groupId>javassist</groupId>
> > +                    <artifactId>javassist</artifactId>
> > +                    <scope>test</scope>
> > +                </dependency>
> > +            </dependencies>
> > +        </profile>
> > +    </profiles>
> > </project>
> >
>