我的compagny中使用JRE 7.0从WAS 7.0迁移到WAS 8.5.5.4,因为所有依赖项都不是开源的,我没有关于以下目标的信息:
<dependency>
<groupId>ibm</groupId>
<artifactId>com.ibm.ws.runtime</artifactId>
<version>${com.ibm.ws.runtime.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ibm</groupId>
<artifactId>etools.xsd.bean.runtime</artifactId>
<version>${etools.xsd.bean.runtime.version}</version>
</dependency>
<dependency>
<groupId>ibm</groupId>
<artifactId>j2ee</artifactId>
<version>${j2ee.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ibm</groupId>
<artifactId>marshall</artifactId>
<version>${ibm.marshall.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ibm</groupId>
<artifactId>wsatlib</artifactId>
<version>${ibm.wsatlib.version}</version>
<scope>provided</scope>
</dependency>
我的问题是,我是否需要更新以下依赖项(默认情况下我认为是的,因为有链接到7.0)?在这种情况下,WAS 8555中的依赖是什么,我知道IBM已经在WAS 85554中更改了依赖关系的groupId / ArtifactId。因为我不知道实际上是否存在依赖性,所以我无法进行链接消息。
答案 0 :(得分:0)
看起来你会用:
<dependency>
<groupId>com.ibm.tools.target</groupId>
<artifactId>was</artifactId>
<version>8.5.5</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
辛迪