This is an automated email from the ASF dual-hosted git repository. leerho pushed a commit to branch improve_pom in repository https://gitbox.apache.org/repos/asf/datasketches-java.git
commit bb31e7df0f0506e2c8ce197bbc579aaee12e1e62 Author: Lee Rhodes <[email protected]> AuthorDate: Wed May 15 19:09:13 2024 -0700 Removed some unnecessary comments. Added some custom directory specification to the pom so Eclipse will not insist on folders that aren't there. Like src/main/resources is actual src/main/javadoc/resources. This solves an Eclipse config problem that has been there a while. --- pom.xml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pom.xml b/pom.xml index 35107f24..3a4706e0 100644 --- a/pom.xml +++ b/pom.xml @@ -134,13 +134,11 @@ under the License. </properties> <dependencies> - <!-- UNIQUE FOR THIS JAVA COMPONENT --> <dependency> <groupId>org.apache.datasketches</groupId> <artifactId>datasketches-memory</artifactId> <version>${datasketches-memory.version}</version> </dependency> - <!-- END: UNIQUE FOR THIS JAVA COMPONENT --> <!-- Test Scope --> <dependency> <groupId>org.testng</groupId> @@ -148,16 +146,18 @@ under the License. <version>${testng.version}</version> <scope>test</scope> </dependency> - <!-- - <dependency> - <groupId>org.apache.datasketches</groupId> - <artifactId>datasketches-java-common</artifactId> - <version>1.0.0</version> - </dependency> - --> </dependencies> <build> + <!-- see https://maven.apache.org/pom.html#Properties --> + <resources> + <resource> + <directory>${project.basedir}/src/main/javadoc/resources</directory> + </resource> + <resource> + <directory>${project.basedir}/src/main/javadoc</directory> + </resource> + </resources> <pluginManagement> <plugins> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
