i found an good article on the internet that shows me how to add a jar library to my maven (eclipse) project, using "maven-install-plugin". i used this and managedd it to have the ucanaccess 3.0.1 library added to my maven project.
however, the source code is a separate zip file and i did not find any sufficient information on the internet how to add this source file "the same way" using "maven-install-plugin". i found some information that the plugin "somehow" supports the definition of sources, but i was unable to find WHERE and HOW the proper way is (no examples found).
Could someone please give me a Tip what a proper "maven-install-plugin" configuration in a pom.xml would look like including the SOURCE FILE ?
This is part of my pom.xml concerning the external library ucanaccess 3:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<id>install-external</id>
<phase>clean</phase>
<configuration>
<file>${basedir}/externalLibs/UCanAccess-3.0.1-bin/ucanaccess-3.0.1.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>net.ucanaccess</groupId>
<artifactId>ucanaccess</artifactId>
<version>3.0.1</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>
</executions>
</plugin>
thanks