typescript generator
This commit is contained in:
0
Dockerfile
Normal file
0
Dockerfile
Normal file
22
pom.xml
22
pom.xml
@@ -75,7 +75,29 @@
|
|||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>cz.habarta.typescript-generator</groupId>
|
||||||
|
<artifactId>typescript-generator-maven-plugin</artifactId>
|
||||||
|
<version>3.2.1263</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>generate</id>
|
||||||
|
<goals>
|
||||||
|
<goal>generate</goal>
|
||||||
|
</goals>
|
||||||
|
<phase>process-classes</phase>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
<configuration>
|
||||||
|
<jsonLibrary>jackson2</jsonLibrary>
|
||||||
|
<classes>
|
||||||
|
<class>com.example.video_downloader.dto.SaveNewVideoRequest</class>
|
||||||
|
</classes>
|
||||||
|
<outputKind>module</outputKind>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
package com.example.video_downloader.services;
|
||||||
|
|
||||||
|
public class ProccessService {
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user