[REQUEST] Add Lucee JAR w/o extension in Maven repository

Hi,

This is a request to add the Lucee JAR without extension in Maven repository.
This JAR is the one named “lucee-light-X.X.X.XX.jar” and which can be downloaded from Lucee website.
Currently I can get Lucee JAR from Maven repository but it includes some extensions.
Sometimes I just need or want to use a lightweight version which I won’t find in the repository. So my pom.xml have to download the one I need :

<plugin>
   <groupId>com.googlecode.maven-download-plugin</groupId>
   <artifactId>download-maven-plugin</artifactId>
   <version>1.4.1</version>
   <executions>
      <execution>
         <goals><goal>wget</goal></goals>
         <configuration>
            <url>https://cdn.lucee.org/lucee-light-X.X.X.XX.jar</url>
            ...
         </configuration>
      </execution>
   </executions>
</plugin>

Thank you