mirror of
				https://github.com/OpenAPITools/openapi-generator.git
				synced 2025-11-04 02:33:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<project>
 | 
						|
    <modelVersion>4.0.0</modelVersion>
 | 
						|
    <groupId>org.openapitools</groupId>
 | 
						|
    <artifactId>PlayServerTests-controller-only</artifactId>
 | 
						|
    <packaging>pom</packaging>
 | 
						|
    <version>1.0-SNAPSHOT</version>
 | 
						|
    <name>java-play-framework-controller-only Project</name>
 | 
						|
    <build>
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <artifactId>maven-dependency-plugin</artifactId>
 | 
						|
                <executions>
 | 
						|
                    <execution>
 | 
						|
                        <phase>package</phase>
 | 
						|
                        <goals>
 | 
						|
                            <goal>copy-dependencies</goal>
 | 
						|
                        </goals>
 | 
						|
                        <configuration>
 | 
						|
                            <outputDirectory>${project.build.directory}</outputDirectory>
 | 
						|
                        </configuration>
 | 
						|
                    </execution>
 | 
						|
                </executions>
 | 
						|
            </plugin>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.codehaus.mojo</groupId>
 | 
						|
                <artifactId>exec-maven-plugin</artifactId>
 | 
						|
                <version>1.6.0</version>
 | 
						|
                <executions>
 | 
						|
                    <execution>
 | 
						|
                        <id>Play Test</id>
 | 
						|
                        <phase>integration-test</phase>
 | 
						|
                        <goals>
 | 
						|
                            <goal>exec</goal>
 | 
						|
                        </goals>
 | 
						|
                        <configuration>
 | 
						|
                            <executable>sbt</executable>
 | 
						|
                            <arguments>
 | 
						|
                                <argument>test</argument>
 | 
						|
                            </arguments>
 | 
						|
                        </configuration>
 | 
						|
                    </execution>
 | 
						|
                </executions>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </build>
 | 
						|
</project>
 |