2

我正在尝试使用 Maven 在本地 Jetty 中部署 webapp。

我在命令行中的 Java 版本是

java version "1.5.0_22"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_22-b03)
Java HotSpot(TM) Client VM (build 1.5.0_22-b03, mixed mode, sharing)

在 Eclipse 中,我的项目的 JDK 合规性设置为“在构建路径上使用执行环境 J2SE-1.5 的合规性”,这也是 JDK1.5.0_22。

无论我尝试从哪里运行它,无论是命令行mvn jetty:run还是 Eclipse 配置这样的 VM

在此处输入图像描述

我得到同样的错误。

    Listening for transport dt_socket at address: 4000
        [INFO] Scanning for projects...
        [WARNING] 
        [WARNING] Some problems were encountered while building the effective model for org.ow2.frascati.examples:frascati-gae:war:1.5-SNAPSHOT
        [WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: com.sun.xml.bind:jaxb-impl:jar -> version 2.1.13 vs 2.1.12 @ line 103, column 17
        [WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ org.ow2.frascati.examples:parent:1.5-SNAPSHOT, C:\WorkSpace\FrascatiTrunk\examples\pom.xml, line 93, column 15
        [WARNING] 'build.plugins.plugin.version' for com.google.code.maven-replacer-plugin:maven-replacer-plugin is missing. @ org.ow2.frascati.examples:frascati-in-the-cloud:1.5-SNAPSHOT, C:\WorkSpace\FrascatiTrunk\examples\frascati-in-the-cloud\pom.xml, line 462, column 15
        [WARNING] 
        [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
        [WARNING] 
        [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
        [WARNING] 
        [INFO]                                                                         
        [INFO] ------------------------------------------------------------------------
        [INFO] Building OW2 FraSCAti in Google App Engine 1.5-SNAPSHOT
        [INFO] ------------------------------------------------------------------------
        [INFO] 
        [INFO] >>> maven-jetty-plugin:6.1.26:run (default-cli) @ frascati-gae >>>
        [INFO] 
        [INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ frascati-gae ---
        [debug] execute contextualize
        [INFO] Using 'UTF-8' encoding to copy filtered resources.
        [INFO] skip non existing resourceDirectory C:\WorkSpace\FrascatiTrunk\examples\frascati-in-the-cloud\Google App Engine\src\main\resources
        [INFO] 
        [INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ frascati-gae ---
        [INFO] Nothing to compile - all classes are up to date
        [INFO] 
        [INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ frascati-gae ---
        [debug] execute contextualize
        [INFO] Using 'UTF-8' encoding to copy filtered resources.
        [INFO] skip non existing resourceDirectory C:\WorkSpace\FrascatiTrunk\examples\frascati-in-the-cloud\Google App Engine\src\test\resources
        [INFO] 
        [INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ frascati-gae ---
        [INFO] Nothing to compile - all classes are up to date
        [INFO] 
        [INFO] <<< maven-jetty-plugin:6.1.26:run (default-cli) @ frascati-gae <<<
        [INFO] 
        [INFO] --- maven-jetty-plugin:6.1.26:run (default-cli) @ frascati-gae ---
        [INFO] Configuring Jetty for project: OW2 FraSCAti in Google App Engine
        [INFO] Webapp source directory = C:\WorkSpace\FrascatiTrunk\examples\frascati-in-the-cloud\Google App Engine\target\webapp
        [INFO] Reload Mechanic: automatic
        [INFO] Classes = C:\WorkSpace\FrascatiTrunk\examples\frascati-in-the-cloud\Google App Engine\target\classes
        2012-10-04 10:25:26.688:INFO::Logging to STDERR via org.mortbay.log.StdErrLog
        [INFO] Context path = /frascati-gae
        [INFO] Tmp directory =  determined at runtime
        [INFO] Web defaults = org/mortbay/jetty/webapp/webdefault.xml
        [INFO] Web overrides =  none
        [INFO] web.xml file = C:\WorkSpace\FrascatiTrunk\examples\frascati-in-the-cloud\Google App Engine\target\webapp\WEB-INF\web.xml
        [INFO] Webapp directory = C:\WorkSpace\FrascatiTrunk\examples\frascati-in-the-cloud\Google App Engine\target\webapp
        [INFO] Starting jetty 6.1.26 ...
        2012-10-04 10:25:26.770:INFO::jetty-6.1.26
        2012-10-04 10:25:27.070:WARN::Failed startup of context org.mortbay.jetty.plugin.Jetty6PluginWebAppContext@f553e3{/frascati-gae,C:\WorkSpace\FrascatiTrunk\examples\frascati-in-the-cloud\Google App Engine\target\webapp}
        java.lang.reflect.InvocationTargetException
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:592)
            at org.mortbay.jetty.plugin.Jetty6MavenConfiguration.parseAnnotations(Jetty6MavenConfiguration.java:142)

.
.
.

java.lang.UnsupportedClassVersionError: Bad version number in .class file
            at java.lang.ClassLoader.defineClass1(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:621)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
            at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:188)

.
.
.

        [INFO] Started Jetty Server
        2012-10-04 10:25:27.156:INFO::Started SelectChannelConnector@0.0.0.0:8080
        [INFO] Starting scanner at interval of 10 seconds.

我很困惑

java.lang.UnsupportedClassVersionError: Bad version number in .class file

因为自从我更改为 J2SE-1.5 以来我一直得到这个,因为项目要求是这样指定的。

我什至删除了我的整个 m2repo 并让 Maven 重新下载了所有内容。

我对这种错误的组合有点迷失了。任何人都可以对此有所了解吗?

编辑:

如果我将我的 Java 版本更改为 JDK-1.6,它可以“正常”工作(不同的不相关错误)。

但为什么?如果项目要求是 Java 1.5,它不应该工作吗?
此外,不应该 Maven 下载的所有存储库都与 1.5 兼容,因为它们是在部署之前编译的?

编辑2:(关于@Kal的评论)

我的项目是主干线的子项目示例。为了编译它,我在我的示例项目的 POM 上运行 Maven,这取决于以前的 POM。在其父 POM 的示例目录中,有:

 <!-- Compile with Java 1.5 -->
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-compiler-plugin</artifactId>
          <configuration>
            <source>1.5</source>
            <target>1.5</target>
          </configuration>
        </plugin>

编辑 3:

这是我的依赖树:

[INFO] org.ow2.frascati.examples:frascati-gae:war:1.5-SNAPSHOT
[INFO] +- com.sun.xml.bind:jaxb-impl:jar:2.1.12:runtime (scope not updated to co
mpile)
[INFO] +- org.ow2.frascati.examples:fibonacci:jar:1.5-SNAPSHOT:compile
[INFO] |  +- org.ow2.frascati:frascati-binding-rest:jar:1.5-SNAPSHOT:compile
[INFO] |  |  +- org.ow2.frascati:frascati-metamodel-frascati:jar:1.5-SNAPSHOT:co
mpile
[INFO] |  |  |  \- org.ow2.frascati.model:frascati-model:jar:2.0.1.3:compile
[INFO] |  |  |     \- org.ow2.frascati.model:sca-model:jar:2.0.1.3:compile
[INFO] |  |  |        +- org.eclipse.emf:ecore:jar:2.4.0:compile
[INFO] |  |  |        |  \- org.eclipse.core:runtime:jar:3.4.0:compile
[INFO] |  |  |        |     \- org.eclipse.equinox:common:jar:3.4.0:compile
[INFO] |  |  |        +- org.eclipse.emf.ecore:xmi:jar:2.4.0:compile
[INFO] |  |  |        \- org.eclipse.emf:common:jar:2.4.0:compile
[INFO] |  |  +- org.ow2.frascati:frascati-binding-factory:jar:1.5-SNAPSHOT:compi
le
[INFO] |  |  |  +- org.ow2.fractal.bf.connectors:fractal-bf-connectors-common:ja
r:0.10-SNAPSHOT:compile
[INFO] |  |  |  |  \- org.ow2.fractal.bf:fractal-bf-core:jar:0.10-SNAPSHOT:compi
le
[INFO] |  |  |  +- org.objectweb.fractal.fractaladl:fractal-adl:jar:2.3.1:compil
e
[INFO] |  |  |  |  +- org.objectweb.fractal.fractaladl:ast-core:jar:2.3.1:compil
e
[INFO] |  |  |  |  |  \- dtdparser:dtdparser:jar:1.21:compile
[INFO] |  |  |  |  +- org.objectweb.fractal.fractaladl:task-framework:jar:2.3.1:
compile
[INFO] |  |  |  |  \- org.objectweb.fractal.fractaladl:task-deployment:jar:2.3.1
:compile
[INFO] |  |  |  \- org.objectweb.fractal:fractal-util:jar:1.1.2:compile
[INFO] |  |  \- org.ow2.fractal.bf.connectors:fractal-bf-connectors-rest-cxf:jar
:0.10-SNAPSHOT:compile
[INFO] |  |     +- javax.ws.rs:jsr311-api:jar:1.1.1:compile
[INFO] |  |     \- org.apache.cxf:cxf-rt-frontend-jaxrs:jar:2.5.4:compile
[INFO] |  |        +- org.apache.cxf:cxf-rt-bindings-xml:jar:2.5.4:compile
[INFO] |  |        \- org.codehaus.jettison:jettison:jar:1.3.1:compile
[INFO] |  \- org.ow2.frascati:frascati-binding-ws:jar:1.5-SNAPSHOT:compile
[INFO] |     \- org.ow2.fractal.bf.connectors:fractal-bf-connectors-soap-cxf:jar
:0.10-SNAPSHOT:compile
[INFO] |        +- org.apache.cxf:cxf-rt-frontend-simple:jar:2.5.4:compile
[INFO] |        |  \- org.apache.cxf:cxf-rt-bindings-soap:jar:2.5.4:compile
[INFO] |        |     \- org.apache.cxf:cxf-rt-databinding-jaxb:jar:2.5.4:compil
e
[INFO] |        +- org.apache.cxf:cxf-rt-databinding-aegis:jar:2.5.4:compile
[INFO] |        +- org.apache.cxf:cxf-rt-frontend-jaxws:jar:2.5.4:compile
[INFO] |        |  \- org.apache.cxf:cxf-rt-ws-addr:jar:2.5.4:compile
[INFO] |        \- wsdl4j:wsdl4j:jar:1.6.2:compile
[INFO] +- org.ow2.frascati.examples:isbntest:jar:1.5-SNAPSHOT:compile
[INFO] |  \- org.ow2.frascati:frascati-interface-wsdl:jar:1.5-SNAPSHOT:compile
[INFO] |     \- org.jvnet.jaxb2_commons:jaxb2-basics:jar:0.5.0:compile
[INFO] |        +- org.jvnet.jaxb2_commons:jaxb2-basics-runtime:jar:0.5.0:compil
e
[INFO] |        \- org.jvnet.jaxb2_commons:jaxb2-basics-tools:jar:0.5.0:compile
[INFO] +- org.ow2.frascati.examples:ohloh-proxy-standalone:jar:1.5-SNAPSHOT:comp
ile
[INFO] +- org.ow2.frascati.examples:verifymail:jar:1.5-SNAPSHOT:compile
[INFO] +- org.ow2.frascati.examples:weather:jar:1.5-SNAPSHOT:compile
[INFO] +- org.ow2.frascati.examples:weather-mock:jar:1.5-SNAPSHOT:compile
[INFO] +- org.ow2.frascati:frascati-servlet-cxf:jar:1.5-SNAPSHOT:compile
[INFO] |  +- org.ow2.frascati:frascati-assembly-factory:jar:1.5-SNAPSHOT:compile

[INFO] |  |  +- org.ow2.frascati:frascati-sca-parser:jar:1.5-SNAPSHOT:compile
[INFO] |  |  |  +- org.ow2.frascati:frascati-util:jar:1.5-SNAPSHOT:compile
[INFO] |  |  |  +- org.ow2.frascati.tinfi:frascati-tinfi-membranes-oo:jar:1.4.4:
compile
[INFO] |  |  |  |  \- org.ow2.frascati.tinfi:frascati-tinfi-runtime:jar:1.4.4:co
mpile
[INFO] |  |  |  |     +- org.objectweb.fractal.juliac:juliac-runtime:jar:2.4:com
pile
[INFO] |  |  |  |     +- org.ow2.frascati.tinfi:frascati-tinfi-runtime-api:jar:1
.4.4:compile
[INFO] |  |  |  |     +- org.oasis-open.sca.j:sca-caa-apis:jar:1.1-CD04:compile
[INFO] |  |  |  |     +- org.eclipse.stp.sca.osoa.java:osoa-java-api:jar:2.0.1.2
:compile
[INFO] |  |  |  |     \- org.objectweb.fractal.fraclet.java:fraclet-annotations:
jar:3.3:compile
[INFO] |  |  |  \- org.ow2.frascati.model:sca-model-introspection:jar:2.0.1.3:co
mpile
[INFO] |  |  \- org.ow2.frascati:frascati-component-factory-tinfi-oo:jar:1.5-SNA
PSHOT:compile
[INFO] |  |     \- org.ow2.frascati:frascati-component-factory:jar:1.5-SNAPSHOT:
compile
[INFO] |  +- org.apache.cxf:cxf-rt-transports-http:jar:2.5.4:compile
[INFO] |  |  +- org.apache.cxf:cxf-api:jar:2.4.2:compile
[INFO] |  |  |  +- org.apache.ws.xmlschema:xmlschema-core:jar:2.0:compile
[INFO] |  |  |  \- org.apache.neethi:neethi:jar:3.0.2:compile
[INFO] |  |  +- org.apache.cxf:cxf-rt-transports-common:jar:2.5.4:compile
[INFO] |  |  \- org.apache.cxf:cxf-rt-core:jar:2.4.2:compile
[INFO] |  \- org.apache.cxf:cxf-rt-transports-http-jetty:jar:2.5.4:compile
[INFO] |     +- org.eclipse.jetty:jetty-server:jar:7.4.5.v20110725:compile
[INFO] |     \- org.apache.geronimo.specs:geronimo-servlet_2.5_spec:jar:1.1.2:co
mpile
[INFO] +- org.ow2.frascati:frascati-web-explorer:jar:1.5-SNAPSHOT:compile
[INFO] |  +- org.ow2.frascati:frascati-binding-http:jar:1.5-SNAPSHOT:compile
[INFO] |  |  \- org.ow2.frascati:frascati-metamodel-tuscany:jar:1.5-SNAPSHOT:com
pile
[INFO] |  |     \- org.ow2.frascati.model:tuscany-model:jar:2.0.1.3:compile
[INFO] |  +- com.sun.jersey:jersey-client:jar:1.8:compile
[INFO] |  |  \- com.sun.jersey:jersey-core:jar:1.8:compile
[INFO] |  +- org.ow2.frascati:frascati-web-explorer-bootstrap:jar:1.5-SNAPSHOT:c
ompile
[INFO] |  |  +- org.ow2.frascati:frascati-implementation-velocity:jar:1.5-SNAPSH
OT:compile
[INFO] |  |  |  \- org.ow2.frascati:frascati-metamodel-web:jar:1.5-SNAPSHOT:comp
ile
[INFO] |  |  +- org.ow2.frascati:frascati-implementation-fractal:jar:1.5-SNAPSHO
T:compile
[INFO] |  |  |  +- org.objectweb.fractal.julia:julia-asm:jar:2.5.2:compile
[INFO] |  |  |  |  \- asm:asm:jar:3.1:compile
[INFO] |  |  |  \- org.objectweb.fractal.julia:julia-mixins:jar:2.5.2:compile
[INFO] |  |  \- org.ow2.frascati:frascati-component-factory-julia:jar:1.5-SNAPSH
OT:compile
[INFO] |  |     \- org.objectweb.fractal.julia:julia-runtime:jar:2.5.2:compile
[INFO] |  +- org.ow2.frascati:frascati-introspection-impl:jar:1.5-SNAPSHOT:compi
le
[INFO] |  |  +- org.ow2.frascati:frascati-bootstrap-jdt-rest:jar:1.5-SNAPSHOT:co
mpile
[INFO] |  |  +- org.ow2.frascati:frascati-binding-jsonrpc:jar:1.5-SNAPSHOT:compi
le
[INFO] |  |  |  \- org.ow2.fractal.bf.connectors:fractal-bf-connectors-json-rpc:
jar:0.10-SNAPSHOT:compile
[INFO] |  |  +- org.ow2.frascati.upnp:frascati-binding-upnp:jar:1.5-SNAPSHOT:com
pile
[INFO] |  |  |  +- org.ow2.frascati.upnp:frascati-metamodel-upnp:jar:1.5-SNAPSHO
T:compile
[INFO] |  |  |  +- org.ow2.fractal.bf.connectors:fractal-bf-connectors-upnp:jar:
0.10-SNAPSHOT:compile
[INFO] |  |  |  |  +- org.ow2.fractal.bf.binjiu.runtime:controlpoint:jar:0.2-SNA
PSHOT:compile
[INFO] |  |  |  |  |  +- org.ow2.fractal.bf.binjiu.description:model:jar:0.2-SNA
PSHOT:compile
[INFO] |  |  |  |  |  \- org.cybergarage.cyberlink:upnp-stack:jar:1.7.0:compile
[INFO] |  |  |  |  |     \- net.sf.kxml:kxml2:jar:2.1.8:compile
[INFO] |  |  |  |  +- org.ow2.fractal.bf.binjiu.runtime:device:jar:0.2-SNAPSHOT:
compile
[INFO] |  |  |  |  |  \- org.ow2.fractal.bf.binjiu.description:upnp2java:jar:0.2
-SNAPSHOT:compile
[INFO] |  |  |  |  \- org.ow2.fractal.bf.binjiu.description:java2upnp:jar:0.2-SN
APSHOT:compile
[INFO] |  |  |  \- xerces:xercesImpl:jar:2.9.1:compile
[INFO] |  |  |     \- xml-apis:xml-apis:jar:1.3.04:compile
[INFO] |  |  +- org.ow2.frascati.gcs:frascati-binding-jgroups:jar:1.5-SNAPSHOT:c
ompile
[INFO] |  |  |  +- org.ow2.frascati.gcs:frascati-metamodel-gcs:jar:1.5-SNAPSHOT:
compile
[INFO] |  |  |  \- org.jgroups:jgroups:jar:2.12.1.Final:compile
[INFO] |  |  +- org.ow2.frascati:frascati-binding-jms:jar:1.5-SNAPSHOT:compile
[INFO] |  |  |  +- org.ow2.frascati:frascati-util-xml:jar:1.5-SNAPSHOT:compile
[INFO] |  |  |  |  \- org.jdom:jdom:jar:1.1:compile
[INFO] |  |  |  +- org.objectweb.joram:joram-client-jms:jar:5.5.0:compile
[INFO] |  |  |  |  +- org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1.1:
compile
[INFO] |  |  |  |  +- org.objectweb.joram:joram-shared:jar:5.5.0:compile
[INFO] |  |  |  |  |  \- org.objectweb.joram:jcup:jar:5.3.1:compile
[INFO] |  |  |  |  \- soap:soap:jar:2.3:compile
[INFO] |  |  |  +- org.objectweb.joram:jndi-client:jar:5.5.0:compile
[INFO] |  |  |  |  \- org.objectweb.joram:jndi-shared:jar:5.5.0:compile
[INFO] |  |  |  |     \- org.objectweb.joram:a3-common:jar:5.5.0:compile
[INFO] |  |  |  |        +- org.ow2.jonas.osgi:monolog:jar:5.1.1:compile
[INFO] |  |  |  |        \- org.osgi:org.osgi:jar:3.0.0:compile
[INFO] |  |  |  +- org.objectweb.joram:jndi-server:jar:5.5.0:compile
[INFO] |  |  |  |  \- org.objectweb.joram:a3-rt:jar:5.5.0:compile
[INFO] |  |  |  |     +- commons-dbcp:commons-dbcp:jar:1.2.2:compile
[INFO] |  |  |  |     |  \- commons-pool:commons-pool:jar:1.3:compile
[INFO] |  |  |  |     \- mysql:mysql-connector-java:jar:5.1.6:compile
[INFO] |  |  |  \- org.objectweb.joram:joram-mom-core:jar:5.5.0:compile
[INFO] |  |  +- org.ow2.frascati.native:frascati-binding-jna:jar:1.5-SNAPSHOT:co
mpile
[INFO] |  |  |  +- org.ow2.frascati.native:frascati-metamodel-native:jar:1.5-SNA
PSHOT:compile
[INFO] |  |  |  \- net.java.dev.jna:jna:jar:3.2.5:compile
[INFO] |  |  +- org.ow2.frascati:frascati-binding-rmi:jar:1.5-SNAPSHOT:compile
[INFO] |  |  |  \- org.ow2.fractal.bf.connectors:fractal-bf-connectors-rmi:jar:0
.10-SNAPSHOT:compile
[INFO] |  |  +- org.ow2.frascati:frascati-introspection-api:jar:1.5-SNAPSHOT:com
pile
[INFO] |  |  |  +- org.ow2.frascati.model:osoa-java-api:jar:2.0.1.3:compile
[INFO] |  |  |  \- org.objectweb.fractal:fractal-api:jar:2.0.2:compile
[INFO] |  |  \- org.apache.cxf:cxf-common-utilities:jar:2.4.2:compile
[INFO] |  |     \- org.codehaus.woodstox:woodstox-core-asl:jar:4.1.2:runtime
[INFO] |  |        \- org.codehaus.woodstox:stax2-api:jar:3.1.1:runtime
[INFO] |  +- commons-fileupload:commons-fileupload:jar:1.2.1:compile
[INFO] |  \- commons-io:commons-io:jar:1.3:compile
[INFO] +- org.apache.velocity:velocity:jar:1.7:compile
[INFO] |  +- commons-collections:commons-collections:jar:3.2.1:compile
[INFO] |  \- commons-lang:commons-lang:jar:2.4:compile
[INFO] +- javax.servlet:servlet-api:jar:2.5:provided (scope not updated to compi
le)
[INFO] +- org.mortbay.jetty:servlet-api:jar:2.5-20081211:provided (scope not upd
ated to compile)
[INFO] +- org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0:provided
[INFO] +- org.springframework:spring-web:jar:3.0.5.RELEASE:provided (scope not u
pdated to compile)
[INFO] |  +- org.springframework:spring-beans:jar:3.0.5.RELEASE:provided
[INFO] |  +- org.springframework:spring-context:jar:3.0.5.RELEASE:provided
[INFO] |  |  +- org.springframework:spring-aop:jar:3.0.5.RELEASE:provided
[INFO] |  |  +- org.springframework:spring-expression:jar:3.0.5.RELEASE:provided

[INFO] |  |  \- org.springframework:spring-asm:jar:3.0.5.RELEASE:provided
[INFO] |  \- org.springframework:spring-core:jar:3.0.5.RELEASE:provided
[INFO] +- aopalliance:aopalliance:jar:1.0:runtime
[INFO] +- org.mortbay.jetty:jetty:jar:6.1.16:provided (scope not updated to comp
ile)
[INFO] |  \- org.mortbay.jetty:jetty-util:jar:6.1.16:provided
[INFO] +- org.eclipse.jetty:jetty-util:jar:7.4.5.v20110725:runtime (scope not up
dated to compile)
[INFO] +- org.eclipse.jetty:jetty-continuation:jar:7.4.5.v20110725:provided (sco
pe not updated to compile)
[INFO] +- org.eclipse.jetty:jetty-http:jar:7.4.5.v20110725:provided (scope not u
pdated to compile)
[INFO] |  \- org.eclipse.jetty:jetty-io:jar:7.4.5.v20110725:provided
[INFO] +- org.eclipse.jetty:jetty-security:jar:7.4.5.v20110725:provided (scope n
ot updated to compile)
[INFO] +- org.objectweb.monolog:monolog-api:jar:1.8:provided (scope not updated
to compile)
[INFO] +- org.objectweb.monolog:monolog:jar:1.8:provided (scope not updated to c
ompile)
[INFO] +- com.sun.xml.bind:jaxb-xjc:jar:2.1.13:provided (scope not updated to ru
ntime)
[INFO] +- org.apache.geronimo.specs:geronimo-javamail_1.4_spec:jar:1.7.1:provide
d (scope not updated to compile)
[INFO] +- org.jabsorb:jabsorb:jar:1.3.1:provided (scope not updated to compile)
[INFO] +- org.slf4j:slf4j-api:jar:1.5.0:provided (scope not updated to compile)
[INFO] +- org.slf4j:slf4j-jdk14:jar:1.5.0:provided (scope not updated to compile
)
[INFO] +- org.jvnet.jaxb2_commons:runtime:jar:0.4.1.5:provided (scope not update
d to compile)
[INFO] +- commons-beanutils:commons-beanutils:jar:1.7.0:provided (scope not upda
ted to compile)
[INFO] +- commons-logging:commons-logging:jar:1.0.3:provided (scope not updated
to compile)
[INFO] +- org.apache.cxf:cxf-tools-wsdlto-core:jar:2.4.2:provided (scope not upd
ated to compile)
[INFO] |  \- org.apache.cxf:cxf-tools-validator:jar:2.4.2:provided
[INFO] +- org.apache.cxf:cxf-tools-common:jar:2.4.2:runtime
[INFO] +- org.apache.cxf:cxf-tools-wsdlto-frontend-jaxws:jar:2.4.2:provided (sco
pe not updated to compile)
[INFO] |  \- xml-resolver:xml-resolver:jar:1.2:provided
[INFO] +- org.apache.cxf:cxf-tools-wsdlto-databinding-jaxb:jar:2.4.2:provided (s
cope not updated to compile)
[INFO] +- org.eclipse:osgi:jar:3.4.0:provided
[INFO] +- org.eclipse.core:jobs:jar:3.4.0:provided
[INFO] +- asm:asm-util:jar:3.1:provided (scope not updated to compile)
[INFO] |  \- asm:asm-tree:jar:3.1:provided
[INFO] +- asm:asm-analysis:jar:3.1:provided (scope not updated to compile)
[INFO] +- javax.activation:activation:jar:1.1:provided (scope not updated to run
time)
[INFO] +- javax.annotation:jsr250-api:jar:1.0:provided (scope not updated to com
pile)
[INFO] +- javax.script:script-api:jar:1.0:provided
[INFO] +- javax.xml.bind:jaxb-api:jar:2.1:provided (scope not updated to runtime
)
[INFO] +- javax.xml.stream:stax-api:jar:1.0-2:provided (scope not updated to com
pile)
[INFO] +- org.ow2.frascati:frascati-runtime-factory:jar:1.5-SNAPSHOT:provided (s
cope not updated to compile)
[INFO] |  +- org.ow2.frascati:frascati-component-factory-juliac-jdt:jar:1.5-SNAP
SHOT:provided
[INFO] |  |  +- org.ow2.frascati:frascati-component-factory-juliac:jar:1.5-SNAPS
HOT:provided
[INFO] |  |  |  \- org.objectweb.fractal.juliac:juliac-core:jar:2.4.3:provided
[INFO] |  |  |     \- com.google.guava:guava:jar:r07:provided
[INFO] |  |  \- org.objectweb.fractal.juliac:juliac-jdt:jar:2.4.3:provided
[INFO] |  |     \- org.eclipse.jdt:core:jar:3.3.0.771:provided
[INFO] |  \- org.ow2.frascati:frascati-component-factory-juliac-tinfi-oo:jar:1.5
-SNAPSHOT:provided
[INFO] |     \- org.ow2.frascati.tinfi:frascati-tinfi-oo:jar:1.4.4:provided
[INFO] |        +- org.objectweb.fractal.juliac:juliac-oo:jar:2.4:provided
[INFO] |        \- org.ow2.frascati.tinfi:frascati-tinfi-mixins:jar:1.4.4:provid
ed
[INFO] \- org.ow2.frascati:frascati-explorer-api:jar:1.5-SNAPSHOT:provided
[INFO]    +- org.objectweb.fractal.fractalexplorer:fractal-explorer:jar:1.1.4:pr
ovided
[INFO]    |  +- org.objectweb.util.explorer:explorer:jar:1.0:provided
[INFO]    |  |  \- org.objectweb.apollon:apollon-runtime:jar:1.0:provided
[INFO]    |  |     +- org.objectweb.util.misc:ow-misc:jar:1.0:provided
[INFO]    |  |     \- org.objectweb.util:commandline:jar:1.0:provided
[INFO]    |  +- org.objectweb.util.explorer.plugins:explorer-reflector-plugin:ja
r:1.0:provided
[INFO]    |  \- jgraph:jgraph:jar:fractal:provided
[INFO]    \- org.swinglabs:swing-layout:jar:1.0.3:provided
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 40.787s
[INFO] Finished at: Thu Oct 04 12:22:34 CEST 2012
[INFO] Final Memory: 17M/112M
[INFO] ------------------------------------------------------------------------
4

0 回答 0