-
Notifications
You must be signed in to change notification settings - Fork 0
tmahesh/maven-getlocalip-plugin
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Do this to get localip of your machine in a maven project Run mvn install on the checkout folder 1. cd maven-getlocalip 2. mvn install In the project where you want to get localip as a maven property, add this: <plugin> <groupId>com.hs18</groupId> <artifactId>getlocalip-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <id>get-local-ip</id> <phase>initialize</phase> <goals> <goal>getlocalip</goal> </goals> </execution> </executions> </plugin> To test if its working, u can echo the localip to console like this in your project's pom.xml: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.7</version> <executions> <execution> <phase>compile</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <echo>=====LocalIP: ${localIP}</echo> </target> </configuration> </execution> </executions> </plugin>
About
get ip of your machine during maven build
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published