Skip to content

Commit

Permalink
Rename cache2k-impl to cache2k-core again, #80
Browse files Browse the repository at this point in the history
  • Loading branch information
cruftex committed Jul 21, 2018
1 parent da8f75b commit 624ea50
Show file tree
Hide file tree
Showing 221 changed files with 17 additions and 17 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion cache2k-impl/pom.xml → cache2k-core/pom.xml
Expand Up @@ -7,7 +7,7 @@
<version>1.2-SNAPSHOT</version>
</parent>

<artifactId>cache2k-impl</artifactId>
<artifactId>cache2k-core</artifactId>
<version>1.2-SNAPSHOT</version>
<name>cache2k implementation</name>

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion cache2k-jcache-tests/pom.xml
Expand Up @@ -135,7 +135,7 @@
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>cache2k-impl</artifactId>
<artifactId>cache2k-core</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion cache2k-jcache/pom.xml
Expand Up @@ -29,7 +29,7 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>cache2k-impl</artifactId>
<artifactId>cache2k-core</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion cache2k-osgi-all/pom.xml
Expand Up @@ -29,7 +29,7 @@

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>cache2k-impl</artifactId>
<artifactId>cache2k-core</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion cache2k-spring/pom.xml
Expand Up @@ -45,7 +45,7 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>cache2k-impl</artifactId>
<artifactId>cache2k-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down
Expand Up @@ -22,7 +22,7 @@ For cache2k version 1.1 and above, include the following dependencies:
</dependency>
<dependency>
<groupId>org.cache2k</groupId>
<artifactId>cache2k-impl</artifactId>
<artifactId>cache2k-core</artifactId>
<version>${cache2k-version}</version>
<scope>runtime</scope>
</dependency>
Expand All @@ -35,7 +35,7 @@ used instead of Stax. The XML configuration code will be removed via Proguard, i

=== Proguard Rules

The `cache2k-impl` contains code relevant for server based software or enterprise software that is
The `cache2k-core` contains code relevant for server based software or enterprise software that is
usually not needed within Android. One example is the exposure of statistics via JMX. The code base is
modular, and code needed within server environments is usually not loaded whithin Android applications.
To minimize the footprint of the application the unused code can be removed via Proguard rules.
Expand Down
Expand Up @@ -16,7 +16,7 @@ Here is an example:

[source,xml]
----
include::../../../../../../cache2k-impl/src/test/resources/cache2k-example.xml[]
include::../../../../../../cache2k-core/src/test/resources/cache2k-example.xml[]
----

=== Combine Programmatic and XML Configuration
Expand Down
Expand Up @@ -16,7 +16,7 @@ To use cache2k via JCache the following dependencies need to be added:
</dependency>
<dependency>
<groupId>org.cache2k</groupId>
<artifactId>cache2k-impl</artifactId>
<artifactId>cache2k-core</artifactId>
<version>${cache2k-version}</version>
<scope>runtime</scope>
</dependency>
Expand Down
@@ -1,9 +1,9 @@
[[osgi]]
== OSGi

The Jar-Files `cache2k-api` and `cache2k-impl` currently lack OSGi bundle information. For OSGi users
The Jar-Files `cache2k-api` and `cache2k-core` currently lack OSGi bundle information. For OSGi users
the bundle `cache2k-osgi-bundle` provided which is a combination of both artifacts including the needed
OSGi meta information.

Eventually `cache2k-api` and `cache2k-impl` should become proper meta information and be usable with
Eventually `cache2k-api` and `cache2k-core` should become proper meta information and be usable with
OSGi drirectly. Volunteers using OSGi please check https://github.com/cache2k/cache2k/issues/83[GH 83]
Expand Up @@ -18,7 +18,7 @@ To use cache2k in you Spring project, add the following libraries:
</dependency>
<dependency>
<groupId>org.cache2k</groupId>
<artifactId>cache2k-impl</artifactId>
<artifactId>cache2k-core</artifactId>
<version>${cache2k-version}</version>
<scope>runtime</scope>
</dependency>
Expand Down
Expand Up @@ -20,7 +20,7 @@ in your project is to add the following dependencies:
</dependency>
<dependency>
<groupId>org.cache2k</groupId>
<artifactId>cache2k-impl</artifactId>
<artifactId>cache2k-core</artifactId>
<version>${cache2k-version}</version>
<scope>runtime</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -48,7 +48,7 @@

<modules>
<module>cache2k-api</module>
<module>cache2k-impl</module>
<module>cache2k-core</module>
<module>cache2k-osgi-all</module>
<!-- not deployed on OSS central -->
<module>cache2k-jcache-tests</module>
Expand Down
2 changes: 1 addition & 1 deletion test-android-proguard/pom.xml
Expand Up @@ -44,7 +44,7 @@
</dependency>
<dependency>
<groupId>org.cache2k</groupId>
<artifactId>cache2k-impl</artifactId>
<artifactId>cache2k-core</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion test-android/pom.xml
Expand Up @@ -43,7 +43,7 @@
</dependency>
<dependency>
<groupId>org.cache2k</groupId>
<artifactId>cache2k-impl</artifactId>
<artifactId>cache2k-core</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion test-osgi/src/test/java/org/cache2k/test/osgi/OsgiIT.java
Expand Up @@ -64,7 +64,7 @@ public Option[] config() {
try to use api and impl directly
https://github.com/cache2k/cache2k/issues/83
bundle("file:///" + _workspaceDir + "/cache2k-api/target/cache2k-api-" + System.getProperty("cache2k.version") + ".jar"),
bundle("file:///" + _workspaceDir + "/cache2k-impl/target/cache2k-impl-" + System.getProperty("cache2k.version") + ".jar"),
bundle("file:///" + _workspaceDir + "/cache2k-core/target/cache2k-core-" + System.getProperty("cache2k.version") + ".jar"),
*/
junitBundles()
);
Expand Down

0 comments on commit 624ea50

Please sign in to comment.