add: generic JWT token extraction

refactor: change project and POMs' names accordingly
This commit was merged in pull request #1.
This commit is contained in:
2025-10-31 17:13:42 +01:00
parent 8360c7e8e0
commit d3f4330fa8
17 changed files with 100 additions and 281 deletions

31
pom.xml
View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.miarma.api</groupId>
<artifactId>miarma-ecosystem</artifactId>
<artifactId>miarma-backend</artifactId>
<version>1.2.0</version>
<packaging>pom</packaging>
@@ -51,33 +51,4 @@
</dependency>
</dependencies>
<build>
<finalName>ME-Core</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>
net.miarma.api.microservices.core.verticles.CoreMainVerticle</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>