xml Oracle CoherenceをEclipse上で実行される(pom.xml)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml Oracle CoherenceをEclipse上で実行される(pom.xml)相关的知识,希望对你有一定的参考价值。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.akiot.coherence</groupId>
    <artifactId>CoherenceSample1</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <!-- pom.xml内でのプロパティ値 -->
    <properties>
    	<java.version>1.8</java.version>
    	<source.encoding>UTF-8</source.encoding>
    </properties>
    
    <!-- Javaバージョン、文字コード指定 -->
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                	<encoding>${source.encoding}</encoding>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    
    <!-- ライブラリの追加 -->
    <dependencies>
    	<dependency>
    		<groupId>com.oracle.coherence</groupId>
    		<artifactId>coherence</artifactId>
    		<version>12.1.3-0-0</version>
    	</dependency>
    </dependencies>
</project>

以上是关于xml Oracle CoherenceをEclipse上で実行される(pom.xml)的主要内容,如果未能解决你的问题,请参考以下文章

oracle coherence 的开源替代方案? [关闭]

如果成员节点出现故障,oracle coherence 分布式缓存中的复制如何处理?

Oracle Coherence 3.5 读书笔记之3 - 满足性能,可扩展和可用性目标

WebLogic coherence UniversalExtractor反序列化(CVE-2020-14645)漏洞分析

总结分析组件化漏洞产生的原理

xml 入力データ検证のエラー风格をカスタマイズする。二通りの方法を绍介。