Update auf Go v1.14 + go.mod File für die Abhängigkeiten
This commit is contained in:
		
							
								
								
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -41,3 +41,4 @@ debug | ||||
| /FTSData* | ||||
| tmp.pdf | ||||
| *_bin | ||||
| /go.sum | ||||
|   | ||||
| @@ -32,6 +32,8 @@ Zum kompilieren folgende Go-Abhängigkeiten installieren: | ||||
|  - `go get github.com/shuLhan/go-bindata` | ||||
|  - `go get github.com/kardianos/service` | ||||
|   | ||||
| **Info!**: Seit Go v1.14 sind die Abhängigkeiten in der `go.mod` definiert, welche beim `go build` automatisch aufgelöst und eingebunden werden.   | ||||
|   | ||||
| Die Build-Scripte liegen im Unterordner `build`   | ||||
|  | ||||
| Download der Binaries unter: [https://nc.masilux.de/index.php/s/dGRdPsa6XPPiyQk](https://nc.masilux.de/index.php/s/dGRdPsa6XPPiyQk) | ||||
|   | ||||
							
								
								
									
										34
									
								
								go.mod
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										34
									
								
								go.mod
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,34 @@ | ||||
| module frickelblog.de/GoWiki/v2 | ||||
|  | ||||
| go 1.14 | ||||
|  | ||||
| require ( | ||||
| 	github.com/RoaringBitmap/roaring v0.4.21 // indirect | ||||
| 	github.com/blevesearch/bleve v0.8.1 | ||||
| 	github.com/blevesearch/blevex v0.0.0-20190916190636-152f0fe5c040 // indirect | ||||
| 	github.com/blevesearch/go-porterstemmer v1.0.2 // indirect | ||||
| 	github.com/blevesearch/segment v0.0.0-20160915185041-762005e7a34f // indirect | ||||
| 	github.com/couchbase/vellum v0.0.0-20190829182332-ef2e028c01fd // indirect | ||||
| 	github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d // indirect | ||||
| 	github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 // indirect | ||||
| 	github.com/cznic/strutil v0.0.0-20181122101858-275e90344537 // indirect | ||||
| 	github.com/etcd-io/bbolt v1.3.3 // indirect | ||||
| 	github.com/facebookgo/ensure v0.0.0-20200202191622-63f1cf65ac4c // indirect | ||||
| 	github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect | ||||
| 	github.com/facebookgo/subset v0.0.0-20200203212716-c811ad88dec4 // indirect | ||||
| 	github.com/go-ldap/ldap/v3 v3.1.7 | ||||
| 	github.com/golang/protobuf v1.3.4 // indirect | ||||
| 	github.com/gorilla/mux v1.7.4 | ||||
| 	github.com/jmhodges/levigo v1.0.0 // indirect | ||||
| 	github.com/jung-kurt/gofpdf v1.16.2 // indirect | ||||
| 	github.com/kardianos/service v1.0.0 | ||||
| 	github.com/mandolyte/mdtopdf v0.0.0-20190923134258-4400ba48c487 | ||||
| 	github.com/remyoudompheng/bigfft v0.0.0-20190728182440-6a916e37a237 // indirect | ||||
| 	github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect | ||||
| 	github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2 // indirect | ||||
| 	github.com/syndtr/goleveldb v1.0.0 // indirect | ||||
| 	github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c // indirect | ||||
| 	go.etcd.io/bbolt v1.3.3 // indirect | ||||
| 	gopkg.in/russross/blackfriday.v2 v2.0.0 // indirect | ||||
| 	gopkg.in/src-d/go-git.v4 v4.13.1 | ||||
| ) | ||||
		Reference in New Issue
	
	Block a user