Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • to use the official naming for the libs.
  • not to use the default location, but the resource folder (with a subfolder!)
  • Use standard OSGi framework
  • Do not unzip JAR archives into the project

You should add the new folder to the pom.xml:

Code Block
project>
	<modelVersion>4.0.0</modelVersion>
	<groupId>de.uniol.inf.is.odysseus</groupId>
	<artifactId>de.uniol.inf.is.odysseus.influxdb.resource</artifactId>
	<version>1.0.0-SNAPSHOT</version>
	<packaging>pom</packaging>

	<parent>
		<groupId>de.uniol.inf.is.odysseus</groupId>
		<artifactId>de.uniol.inf.is.odysseus</artifactId>
		<version>1.0.0-SNAPSHOT</version>
	</parent>

	<modules>
		<module>influxdb-client-java</module>
	</modules>
</project>


You could add other libs to the project, if you missed some as in the following

...