dynamic-form
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.trigyn</groupId>
<artifactId>dynamic-form</artifactId>
<version>1.5.1</version>
</dependency><?xml version="1.0"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.trigyn</groupId> <artifactId>commonutils</artifactId> <version>1.5.1</version> </parent> <artifactId>dynamic-form</artifactId> <version>1.5.1</version> <name>dynamic-form</name> <description>Dynamic form with templating </description> <properties> <java.version>11</java.version> <freemarker.version>2.3.31</freemarker.version> </properties> <dependencies> <dependency> <groupId>com.trigyn</groupId> <artifactId>templating</artifactId> <version>1.5.1</version> </dependency> <dependency> <groupId>com.trigyn</groupId> <artifactId>usermanagement</artifactId> <version>1.5.1</version> </dependency> <dependency> <groupId>com.trigyn</groupId> <artifactId>dynamic-rest</artifactId> <version>1.5.1</version> </dependency> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <dependencies> <!-- The following enables the "thin jar" deployment option. --> <dependency> <groupId>org.springframework.boot.experimental</groupId> <artifactId>spring-boot-thin-layout</artifactId> <version>1.0.11.RELEASE</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.springframework.boot.experimental</groupId> <artifactId>spring-boot-thin-maven-plugin</artifactId> <version>1.0.25.RELEASE</version> <executions> <execution> <!-- Download the dependencies at build time --> <id>resolve</id> <goals> <goal>resolve</goal> </goals> <inherited>false</inherited> </execution> </executions> </plugin> </plugins> </build> </project>