<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>