I assume this js minimization is done by a plugin that you execute in the <build><plugins> part of your project's pom?
Then your requirement sounds like something that can be solved with profiles in maven. Create a profile in your pom, something like
<profiles>
<profile>
<id>minimize-js</id>
<build>
...
</build>
</profile>
</profiles>
Then move the execution of the minimizer plugin from your project's main <build> section into the <build> section of your profile. The plugin will then only be executed when you tell Maven to include that profile in your build.
So if you only run
mvn clean install
the minimize plugin won't be executed, but if you run
mvn clean install -P minimize-js
then it will trigger your plugin and minimize the js.