You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by st...@apache.org on 2018/08/13 18:37:40 UTC

svn commit: r1837976 - /openwebbeans/meecrowave/trunk/README.adoc

Author: struberg
Date: Mon Aug 13 18:37:40 2018
New Revision: 1837976

URL: http://svn.apache.org/viewvc?rev=1837976&view=rev
Log:
improve readme to show a more correct pom

Modified:
    openwebbeans/meecrowave/trunk/README.adoc

Modified: openwebbeans/meecrowave/trunk/README.adoc
URL: http://svn.apache.org/viewvc/openwebbeans/meecrowave/trunk/README.adoc?rev=1837976&r1=1837975&r2=1837976&view=diff
==============================================================================
--- openwebbeans/meecrowave/trunk/README.adoc (original)
+++ openwebbeans/meecrowave/trunk/README.adoc Mon Aug 13 18:37:40 2018
@@ -16,12 +16,23 @@ If you want to start with your first *He
     <dependency>
       <groupId>org.apache.meecrowave</groupId>
       <artifactId>meecrowave-specs-api</artifactId>
-      <version>${project.version}</version>
+      <version>${meecrowave.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.meecrowave</groupId>
+      <artifactId>meecrowave-core</artifactId>
+      <version>${meecrowave.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.meecrowave</groupId>
+      <artifactId>meecrowave-junit</artifactId>
+      <version>${meecrowave.version}</version>
+      <scope>test</scope>
     </dependency>
   </dependencies>
 ```
 
-This is not very convenient, means that an aggregating jar will be created soon to minimize thee amount of dependencies you have to declare.
 The project itself should be used with Java8 as the minimum JDK-version.
 
 To work with the latest SNAPSHOT, you can clone the repo and make a ```mvn clean install```.