[go-nuts] golang maven plug-in 2.2.0 has been published in maven central

2018-05-13 Thread Igor Maznitsa
Hello All the 2.2.0 version of the maven golang plugin has been published in the maven central the main new feature - now the work with dependencies is much easier and they can be defined through external file (example

Re: [go-nuts] golang maven plug-in 2.2.0 has been published in maven central

2018-05-14 Thread Igor Maznitsa
as usual - to make lie easier On Tuesday, May 15, 2018 at 8:36:40 AM UTC+3, kortschak wrote: > > Why! > > -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golan

Re: [go-nuts] golang maven plug-in 2.2.0 has been published in maven central

2018-05-14 Thread Igor Maznitsa
as usual - to make life easier On Tuesday, May 15, 2018 at 8:36:40 AM UTC+3, kortschak wrote: > > Why! > > -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golan

Re: [go-nuts] golang maven plug-in 2.2.0 has been published in maven central

2018-05-15 Thread Igor Maznitsa
*short note for developers who knows nothing about maven* 1. maven is a well-documented cross-platform mature tool with long history 2. maven is open-source and small one 3. maven is accessible in popular OS softw

Re: [go-nuts] golang maven plug-in 2.2.0 has been published in maven central

2018-05-15 Thread Igor Maznitsa
I am not angry at all :) because all my OSS tools I develop usually for my personal use and to feed my laziness and just share them imho today any attempt to keep some IT-ecosystem as pure one and based only on single technology or computer language will be too expensive, it is cheaper to use al

[go-nuts] Re: Go one-line installer

2017-08-02 Thread Igor Maznitsa
I also had interest for such installer about year ago and developed mvn-golang plugin (which can download and install go sdk and tune environment during build process) but it works in maven environment of course -- You received this message because you ar

[go-nuts] Re: Go 1.9 is released

2017-08-25 Thread Igor Maznitsa
and why the SDK is not presented in the list https://storage.googleapis.com/golang/ ? also under Ubuntu 16.04 LTS I have some error for any attempt to start Go 1.9 from downloaded SDK : */lib/ld-linux-aarch64.so.1: No such file or directory* I don't have any such error with the 1.8.3, is it nor

Re: [go-nuts] Re: Go 1.9 is released

2017-08-25 Thread Igor Maznitsa
>>The package search [1] turns up this file is provided by libc6 (for arm64). exactly, I just have downloaded arm64 distributive instead of amd64 :) , amd64 works well, I made the error because https://storage.googleapis.com/golang/ doesn't contain 1.9 and I have to load it manually -- You r

[go-nuts] Re: Go 1.9 is released

2017-09-26 Thread Igor Maznitsa
if you use mvn-golang plugin then since 2.1.6 version it can process missing SDK in the list and since 2.1.7 it will be processing the list correctly because google returns not full list for just request but need some prefix in request -- You received thi

[go-nuts] what is x.exe in golang 1.9.1 sdk for windows? antiviruses complain

2017-10-14 Thread Igor Maznitsa
today a user of my golang plugin for maven reported that his AVG antivirus had detected some potential malware application *x.exe* inside automatically downloaded golang sdk for windows (it had been downloade

[go-nuts] Re: what is x.exe in golang 1.9.1 sdk for windows? antiviruses complain

2017-10-14 Thread Igor Maznitsa
I have created issue -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For mor

[go-nuts] Maven Golang plugin 2.3.2 is released

2019-06-27 Thread Igor Maznitsa
Maven Golang plugin 2.3.2 is released in maven central. Mainly it is a maintenance release and default GoSDK is updated to 1.12.6. As improvement - its multi-module archetype is updated to support code sharing through maven repository. So if you need some

[go-nuts] Re: Repo with multiple modules and vendoring in main module: how to avoid constant re-vendoring?

2019-08-08 Thread Igor Maznitsa
I am not sure that it is possible just out of the box, some guys use my maven plugin to work with multiple module projects because it makes some business in the area and uses maven repository to share sources. -- You received this message because you are

[go-nuts] Re: Go module and local dependencies

2019-09-02 Thread Igor Maznitsa
maven golang plugin allows to process such cases automatically and organize mix from local parts of project and modules , but it needs knowledge of m

[go-nuts] Re: go module & local package

2019-10-15 Thread Igor Maznitsa
mvn-golang also allows make multi-module go projects with locally situated modules, but it works through maven -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubsc

[go-nuts] Re: Compile Go application with multiple versions of C library

2019-10-15 Thread Igor Maznitsa
thats possible use preprocessing with golang too, but through some extra-tools, like maven-golang, example -- You received this message because you are subscribed to the Google Groups "golan

[go-nuts] Re: Problem with migration to the new "module" technology from "go"

2019-11-20 Thread Igor Maznitsa
in the case you should provide local path to your module through *module.package replace => local.path *in go.mod it makes some pain and stops independent work with project. To decrease the pain, I made some solution for maven which automatically work with

[go-nuts] Re: Struggling with working directory

2017-02-12 Thread Igor Maznitsa
also you can try build golang projects through mvn-golang (with the java maven tool) in the case you should play with environment much less -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe fr

[go-nuts] Re: How to manage multiple versions of Go?

2017-06-26 Thread Igor Maznitsa
mvn-golang plugin also allows to automate work with multiple versions of Go -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email t

[go-nuts] Re: What is your favorite Go feature?

2017-06-27 Thread Igor Maznitsa
I very love its possibility to produce a static linked executable file which can be just sent to customer without words "you should download special SDK with 150 Mb size to start my 2 Mb file" -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To

[go-nuts] Re: How do you create and use shared libraries in Go?

2017-06-27 Thread Igor Maznitsa
Go also allows to produce plugins (DLL) which can be loaded dynamically, it also one of ways to share compiled libraries and if I want share some library on sources level between several modules and