|
30 | 30 | <version>1.0.0-SNAPSHOT</version> |
31 | 31 |
|
32 | 32 | <name>Spring Data FalkorDB</name> |
33 | | - <description>Object-Graph-Mapping for FalkorDB using Spring Data.</description> |
34 | | - <url>https://github.com/falkordb/spring-data-falkordb</url> |
| 33 | + <description>Spring Data integration for FalkorDB - Object-Graph-Mapping for the world's fastest graph database.</description> |
| 34 | + <url>https://github.com/FalkorDB/spring-data-falkordb</url> |
35 | 35 | <inceptionYear>2019</inceptionYear> |
| 36 | + |
| 37 | + <scm> |
| 38 | + <connection>scm:git:https://github.com/FalkorDB/spring-data-falkordb.git</connection> |
| 39 | + <developerConnection>scm:git:https://github.com/FalkorDB/spring-data-falkordb.git</developerConnection> |
| 40 | + <url>https://github.com/FalkorDB/spring-data-falkordb</url> |
| 41 | + <tag>HEAD</tag> |
| 42 | + </scm> |
| 43 | + |
| 44 | + <distributionManagement> |
| 45 | + <repository> |
| 46 | + <id>spring-libs-release</id> |
| 47 | + <name>Spring Release Repository</name> |
| 48 | + <url>https://repo.spring.io/libs-release-local</url> |
| 49 | + </repository> |
| 50 | + <snapshotRepository> |
| 51 | + <id>spring-libs-snapshot</id> |
| 52 | + <name>Spring Snapshot Repository</name> |
| 53 | + <url>https://repo.spring.io/libs-snapshot-local</url> |
| 54 | + </snapshotRepository> |
| 55 | + </distributionManagement> |
| 56 | + |
36 | 57 | <organization> |
37 | 58 | <name>FalkorDB</name> |
38 | 59 | <url>https://falkordb.com</url> |
|
758 | 779 | <skip>true</skip> |
759 | 780 | </configuration> |
760 | 781 | </plugin> |
| 782 | + <plugin> |
| 783 | + <groupId>org.apache.maven.plugins</groupId> |
| 784 | + <artifactId>maven-source-plugin</artifactId> |
| 785 | + <executions> |
| 786 | + <execution> |
| 787 | + <id>attach-sources</id> |
| 788 | + <goals> |
| 789 | + <goal>jar-no-fork</goal> |
| 790 | + </goals> |
| 791 | + </execution> |
| 792 | + </executions> |
| 793 | + </plugin> |
| 794 | + <plugin> |
| 795 | + <groupId>org.apache.maven.plugins</groupId> |
| 796 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 797 | + <executions> |
| 798 | + <execution> |
| 799 | + <id>attach-javadocs</id> |
| 800 | + <goals> |
| 801 | + <goal>jar</goal> |
| 802 | + </goals> |
| 803 | + </execution> |
| 804 | + </executions> |
| 805 | + </plugin> |
761 | 806 | </plugins> |
762 | 807 | </build> |
763 | 808 | </profile> |
|
0 commit comments