Maven Profile + Exec Java

기술 2019. 8. 7. 14:32
반응형
 
참고 웹싸이트
 
샘플 - Profile 샘플
    <!--DetectIntentAudio-->
    <profile>
      <id>DetectIntentAudio</id>
      <activation>
        <property>
          <name>DetectIntentAudio</name>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <version>1.6.0</version>
            <executions>
              <execution>
                <goals>
                  <goal>java</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <mainClass>com.example.dialogflow.DetectIntentAudio</mainClass>
              <cleanupDaemonThreads>false</cleanupDaemonThreads>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
 
위와 같은 경우 아래와 같이 Eclipse에서 실행 가능
 
 
 
 
 
Posted by Hey Jerry
,