Browse Source

Merge pull request #24 from larsw/pom-dir-rename

custom-downloader
larsw GitHub 3 years ago
parent
commit
9267a707a6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
18 changed files with 18 additions and 16 deletions
  1. +2
    -2
      README.md
  2. +1
    -1
      docker-compose.yml
  3. +1
    -1
      generate_master_pom.sh
  4. +14
    -12
      pom.xml
  5. +0
    -0
      poms/asciidoctor/pom.xml
  6. +0
    -0
      poms/axon/pom.xml
  7. +0
    -0
      poms/hibernate-types/pom.xml
  8. +0
    -0
      poms/jackson/pom.xml
  9. +0
    -0
      poms/junit5/pom.xml
  10. +0
    -0
      poms/kotest/pom.xml
  11. +0
    -0
      poms/kotlin/pom.xml
  12. +0
    -0
      poms/maven-plugins/pom.xml
  13. +0
    -0
      poms/mockito/pom.xml
  14. +0
    -0
      poms/quarkus-camel/pom.xml
  15. +0
    -0
      poms/quarkus/pom.xml
  16. +0
    -0
      poms/resteasy/pom.xml
  17. +0
    -0
      poms/spring-boot/pom.xml
  18. +0
    -0
      poms/spring-framework/pom.xml

+ 2
- 2
README.md View File

@@ -8,10 +8,10 @@ Run the following command:
./run.sh ./run.sh
``` ```


This starts the reposilite server, then starts maven and makes download all packages defined in the pom's in the `examples/` folder, including their dependencies. These packages are then cached by reposilite in `data/`. The relevant folders are turned into tarballs and saved in the root directory.
This starts the reposilite server, then starts maven and makes download all packages defined in the pom's in the `poms/` folder, including their dependencies. These packages are then cached by reposilite in `data/`. The relevant folders are turned into tarballs and saved in the root directory.


## Adding packages ## Adding packages
New packages should be defined as a dependency in a `pom.xml` file in a subfolder in `examples/`.
New packages should be defined as a dependency in a `pom.xml` file in a subfolder in `poms/`.


After the `pom.xml` is updated, run `./generate_master_pom.xml` to update the root `pom.xml` file, and commit the changes. After the `pom.xml` is updated, run `./generate_master_pom.xml` to update the root `pom.xml` file, and commit the changes.




+ 1
- 1
docker-compose.yml View File

@@ -20,7 +20,7 @@ services:
depends_on: depends_on:
- repo - repo
volumes: volumes:
- ./examples:/poms
- ./poms:/poms
networks: networks:
- nonet - nonet




+ 1
- 1
generate_master_pom.sh View File

@@ -7,7 +7,7 @@ get_first_xml_tag() {
get_modules() { get_modules() {
echo " <modules>" echo " <modules>"


for f in examples/**/*.xml; do
for f in poms/**/*.xml; do
echo " <module>"$f"</module>" echo " <module>"$f"</module>"
done done




+ 14
- 12
pom.xml View File

@@ -3,17 +3,19 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd"> http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modules> <modules>
<module>examples/asciidoctor/pom.xml</module>
<module>examples/axon/pom.xml</module>
<module>examples/hibernate-types/pom.xml</module>
<module>examples/jackson/pom.xml</module>
<module>examples/junit5/pom.xml</module>
<module>examples/kotest/pom.xml</module>
<module>examples/mockito/pom.xml</module>
<module>examples/quarkus-camel/pom.xml</module>
<module>examples/quarkus/pom.xml</module>
<module>examples/resteasy/pom.xml</module>
<module>examples/spring-boot/pom.xml</module>
<module>examples/spring-framework/pom.xml</module>
<module>poms/asciidoctor/pom.xml</module>
<module>poms/axon/pom.xml</module>
<module>poms/hibernate-types/pom.xml</module>
<module>poms/jackson/pom.xml</module>
<module>poms/junit5/pom.xml</module>
<module>poms/kotest/pom.xml</module>
<module>poms/kotlin/pom.xml</module>
<module>poms/maven-plugins/pom.xml</module>
<module>poms/mockito/pom.xml</module>
<module>poms/quarkus-camel/pom.xml</module>
<module>poms/quarkus/pom.xml</module>
<module>poms/resteasy/pom.xml</module>
<module>poms/spring-boot/pom.xml</module>
<module>poms/spring-framework/pom.xml</module>
</modules> </modules>
</project> </project>

examples/asciidoctor/pom.xml → poms/asciidoctor/pom.xml View File


examples/axon/pom.xml → poms/axon/pom.xml View File


examples/hibernate-types/pom.xml → poms/hibernate-types/pom.xml View File


examples/jackson/pom.xml → poms/jackson/pom.xml View File


examples/junit5/pom.xml → poms/junit5/pom.xml View File


examples/kotest/pom.xml → poms/kotest/pom.xml View File


examples/kotlin/pom.xml → poms/kotlin/pom.xml View File


examples/maven-plugins/pom.xml → poms/maven-plugins/pom.xml View File


examples/mockito/pom.xml → poms/mockito/pom.xml View File


examples/quarkus-camel/pom.xml → poms/quarkus-camel/pom.xml View File


examples/quarkus/pom.xml → poms/quarkus/pom.xml View File


examples/resteasy/pom.xml → poms/resteasy/pom.xml View File


examples/spring-boot/pom.xml → poms/spring-boot/pom.xml View File


examples/spring-framework/pom.xml → poms/spring-framework/pom.xml View File


Loading…
Cancel
Save