|
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 | + |
36 | 37 | <organization> |
37 | 38 | <name>FalkorDB</name> |
38 | 39 | <url>https://falkordb.com</url> |
|
59 | 60 | </developer> |
60 | 61 | </developers> |
61 | 62 |
|
| 63 | + <scm> |
| 64 | + <connection>scm:git:https://github.com/FalkorDB/spring-data-falkordb.git</connection> |
| 65 | + <developerConnection>scm:git:https://github.com/FalkorDB/spring-data-falkordb.git</developerConnection> |
| 66 | + <tag>HEAD</tag> |
| 67 | + <url>https://github.com/FalkorDB/spring-data-falkordb</url> |
| 68 | + </scm> |
| 69 | + |
| 70 | + <distributionManagement> |
| 71 | + <repository> |
| 72 | + <id>spring-libs-release</id> |
| 73 | + <name>Spring Release Repository</name> |
| 74 | + <url>https://repo.spring.io/libs-release-local</url> |
| 75 | + </repository> |
| 76 | + <snapshotRepository> |
| 77 | + <id>spring-libs-snapshot</id> |
| 78 | + <name>Spring Snapshot Repository</name> |
| 79 | + <url>https://repo.spring.io/libs-snapshot-local</url> |
| 80 | + </snapshotRepository> |
| 81 | + </distributionManagement> |
| 82 | + |
62 | 83 | <properties> |
63 | 84 | <antora.playbook>${project.basedir}/src/main/antora/antora-playbook.yml</antora.playbook> |
64 | 85 | <apiguardian.version>1.1.1</apiguardian.version> |
|
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