Skip to content

Instantly share code, notes, and snippets.

@FauxFaux
Created March 20, 2019 09:09
Show Gist options
  • Save FauxFaux/3f705054e75808c02b2de84e09683a5e to your computer and use it in GitHub Desktop.
Save FauxFaux/3f705054e75808c02b2de84e09683a5e to your computer and use it in GitHub Desktop.
Maven can't version range ???
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.egg</groupId>
<artifactId>egg</artifactId>
<version>1.0-SNAPSHOT</version>
<name>egg</name>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<!--<version>[17,19) [24,27)</version>-->
<version>[24,27) [17,19)</version>
<type>jar</type>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment