maven startup sh file

 <profiles>
  <profile>
      <id>linuxfix</id>
      <activation>
          <os>
              <family>unix</family>
          </os>
      </activation>
      <build>
          <plugins>
     <plugin>
         <artifactId>exec-maven-plugin</artifactId>
         <groupId>org.codehaus.mojo</groupId>
         <executions>
             <execution>
             <id>chmodsh</id>
             <phase>install</phase>
             <goals>
                 <goal>exec</goal>
             </goals>
             <configuration> 
              <executable>target/release/bin/linuxfix.sh</executable>
             </configuration>
             </execution>
         </executions>
     </plugin>
          </plugins>
      </build>
  </profile>
 </profiles>
</project>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章